    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.6;
      color: #2C3E50;
      overflow-x: hidden;
    }

    .hero {
      min-height: 115vh;
      background: url('image/Artboard 1 copy.jpg') center center / cover no-repeat;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      position: relative;
      padding: 0 1rem;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 6vw, 4rem);
      font-weight: 700;
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero .subtitle {
      font-size: clamp(1rem, 3vw, 1.5rem);
      margin-bottom: 2rem;
      opacity: 0.95;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .btn-primary {
      background: linear-gradient(135deg, #D4AF37, #F4D03F);
      color: #1C2951;
      padding: 12px 25px;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    }

    .btn-secondary {
      background: transparent;
      color: white;
      padding: 12px 25px;
      border: 2px solid white;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-secondary:hover {
      background: white;
      color: #1C2951;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .trust-badges {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
      padding: 0 1rem;
    }

    .badge {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 8px 15px;
      border-radius: 25px;
      font-size: 0.8rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Loading optimization */
    .lazy {
      opacity: 0;
      transition: opacity 0.3s;
    }
    .lazy.loaded {
      opacity: 1;
    }

     .connectivity-section {
      padding: 3rem 1rem;
      text-align: center;
    }

    .connectivity-section h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .connectivity-section h2 span {
      color: #1C2951;
    }

    .connectivity-section p {
      color: #777;
      font-size: 1rem;
      margin-bottom: 2rem;
    }

    .connectivity-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: flex-start;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Left side (list) */
    .places-list {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      text-align: left;
    }

    .place {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .icon-circle {
      background: #E4EED7;
      color: #2C3E50;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .place-info h4 {
      font-size: 1rem;
      font-weight: 600;
      margin: 0;
    }

    .place-info p {
      margin: 0;
      font-size: 0.9rem;
      color: #555;
    }

    /* Right side (map) */
    .map-container iframe {
      width: 100%;
      min-height: 350px;
      border: 0;
      border-radius: 12px;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .connectivity-container {
        grid-template-columns: 1fr;
      }
      .map-container iframe {
        min-height: 300px;
      }
    }

    /* -------------------- Responsive -------------------- */
    @media (max-width: 1024px) {
      .hero {
        padding: 0 2rem;
      }
      .trust-badges {
        bottom: 15px;
      }
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: clamp(1.8rem, 5vw, 3rem);
      }
      .hero .subtitle {
        font-size: clamp(0.95rem, 3vw, 1.3rem);
      }
      .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.95rem;
      }
      .trust-badges {
        flex-direction: row;
        gap: 0.8rem;
      }
    }

    @media (max-width: 480px) {
      .hero {
        min-height: 100vh;
        padding: 0 1rem;
        background: url(image/building.webp);
      }
      .hero h1 {
        font-size: 1.6rem;
        line-height: 1.2;
      }
      .hero .subtitle {
        font-size: 1rem;
      }
      .cta-buttons {
        flex-direction: column;
        gap: 0.8rem;
      }
      .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        font-size: 0.9rem;
      }
      .trust-badges {
        bottom: 10px;
        flex-direction: column;
        gap: 0.5rem;
      }
      .badge {
        font-size: 0.75rem;
        padding: 6px 12px;
      }
    }