* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html, body {
      height: 100%;
      font-family: 'Open Sans', sans-serif;
      background-color: #1f2d26;
      color: #fff;
    }
    body {
      display: flex;
      flex-direction: column;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.2rem 2rem;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(16px) saturate(180%);
      -webkit-backdrop-filter: blur(16px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, 0.125);
      border-radius: 20px;
      margin: 1.5rem auto;
      max-width: 100%;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: #fff;
      font-weight: bold;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 2rem;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9rem;
      padding: 0.5rem 0;
      border-bottom: 2px solid transparent;
      transition: all 0.3s ease;
    }

    nav a:hover {
      border-bottom: 2px solid #fff;
    }

    .icons {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      border-left: 1px solid rgba(255, 255, 255, 0.3);
      padding-left: 1rem;
    }

    .search-bar {
      background: rgba(255, 255, 255, 0.1);
      border: none;
      padding: 6px 10px;
      border-radius: 8px;
      color: white;
      outline: none;
      width: 120px;
    }

    .search-bar::placeholder {
      color: #ccc;
    }

    .mobile-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      background-color: #2b4535;
      position: absolute;
      top: 100%;
      right: 2rem;
      padding: 1rem;
      border-radius: 12px;
      z-index: 999;
    }

    .mobile-nav a {
      padding: 0.5rem 0;
    }

    .hero {
      display: flex;
      flex-direction: column;
      flex: 1;
      height: 100vh;
      margin-top: 7rem;
    }

    .hero-text, .hero-image {
      flex: 1 1 100%;
    }

    .hero-text {
      background-color: #2b4535;
      padding: 3rem 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-text h3 {
      font-size: 0.9rem;
      letter-spacing: 2px;
      color: #ccc;
    }

    .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      margin: 1rem 0;
    }

    .hero-text p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    .hero-text button {
      background-color: #3a5646;
      color: #fff;
      border: none;
      padding: 0.8rem 1.5rem;
      font-size: 1rem;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
    }

    .hero-text button:hover {
      background-color: #4e705c;
    }

    .hero-image {
      position: relative;
      overflow: hidden;
      height: 50vh;
    }

    .hero-image video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
    }

    .hotspot {
      position: absolute;
      background-color: #f36c21;
      width: 25px;
      height: 25px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      font-weight: bold;
      cursor: pointer;
      color: #fff;
    }

    .hotspot-card {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background-color: #2a2a2a;
      padding: 1rem;
      border-radius: 12px;
      color: #fff;
      max-width: 220px;
    }

    .hotspot-card button {
      margin-top: 0.5rem;
      padding: 0.5rem 1rem;
      background-color: #3a5646;
      border: none;
      color: white;
      border-radius: 6px;
      cursor: pointer;
    }

    @media (min-width: 768px) {
      .hero {
        flex-direction: row;
      }
      .hero-text, .hero-image {
        flex: 1;
        height: 100vh;
      }
      .hero-text h1 {
        font-size: 4rem;
      }
      .hero-image {
        height: 100vh;
      }
    }

    @media (max-width: 767px) {
      nav {
        display: none;
      }
      .mobile-toggle {
        display: block;
      }
    }