
    /* Light Mood for All Containers */
    body {
      background: #f8f9fa;
      color: #baadad;
    }
    /* Hero Banner Light Mode - Bigger Size */
    .europe-hero {
      background: linear-gradient(rgba(11, 7, 7, 0.8), rgba(61, 54, 54, 0.8)), url(../blogimages/dest.jpg) center/cover no-repeat fixed;
      color: #ede7e7;
      padding: 200px 0;
      text-align: center;
      position: relative;
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .europe-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      z-index: 1;
      animation: fadeInOverlay 2s ease-in-out;
    }
    .europe-hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
      animation: slideInUp 1.5s ease-out;
    }
    .europe-hero h1 {
      font-size: 3.5em;
      margin-bottom: 20px;
      color: #ffd700;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      letter-spacing: 2px;
    }
    .europe-hero p {
      font-size: 1.3em;
      line-height: 1.6;
      opacity: 0.9;
      color: #333;
    }
    /* Big Ben Light Container */
    .big-ben-dark-container {
      background: #dad1d1;
      color: #333;
      padding: 100px 0;
      text-align: left;
      position: relative;
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .big-ben-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      gap: 40px;
    }
    .big-ben-image {
      flex: 1;
      max-width: 50%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    .big-ben-details {
      flex: 1;
      text-align: left;
    }
    .big-ben-details h3 {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #333;
    }
    .big-ben-details p {
      font-size: 1.1em;
      line-height: 1.6;
      color: #666;
    }
    .big-ben-details ul, .big-ben-details ol {
      text-align: left;
      max-width: 100%;
      margin: 0 0 20px;
      font-size: 1.2em;
      line-height: 1.6;
      color: #666;
    }
    .big-ben-details li {
      margin-bottom: 10px;
      padding-left: 20px;
      position: relative;
    }
    .big-ben-details li::before {
      content: '▸';
      position: absolute;
      left: 0;
      color: #ffd700;
    }
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      transition: background 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .header .navbar-link {
      color: #333;
    }
    .header .navbar-link:hover {
      color: #ffd700;
    }
    @keyframes fadeInOverlay {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes slideInUp {
      from { transform: translateY(50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    @media (max-width: 768px) {
      .big-ben-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
      }
      .big-ben-image {
        max-width: 100%;
      }
      .big-ben-details {
        text-align: center;
      }
      .europe-hero {
        padding: 120px 0;
        min-height: 70vh;
      }
      .europe-hero h1 {
        font-size: 2.5em;
      }
    }
    /* Region Intro Light Mode */
    .region-intro {
      position: relative;
      padding: 80px 0;
      background: #f8f9fa;
      color: #333;
    }
    .region-intro::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('assets/images/europe-intro-bg.jpg') center/cover no-repeat;
      opacity: 0.05;
      z-index: -1;
    }
    .region-intro h2 {
      text-align: center;
      font-size: 2.8em;
      margin-bottom: 30px;
      color: #333;
    }
    .region-intro p {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      font-size: 1.2em;
      line-height: 1.7;
      color: #666;
    }
    /* Country Grid Light Mood */
    .country-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background: #ffffff;
      color: #333;
      min-height: 100vh;
    }
    .country-card {
      position: relative;
      height: 300px;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: #f8f9fa;
    }
    .country-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    .country-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .country-card:hover img {
      transform: scale(1.1);
    }
    .country-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
      color: #fff;
      padding: 30px 20px 20px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    .country-card:hover .country-overlay {
      transform: translateY(0);
    }
    .country-overlay h3 {
      font-size: 1.8em;
      margin-bottom: 10px;
      color: #ffd700;
    }
    .country-overlay p {
      font-size: 1em;
      line-height: 1.5;
      margin-bottom: 15px;
    }
    .explore-btn {
      background: #ffd700;
      color: #333;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      display: inline-block;
      font-weight: 600;
      transition: background 0.3s ease;
    }
    .explore-btn:hover {
      background: #e6c200;
    }


    
  