* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    color: #222;
    line-height: 1.6;
    background: #f6f6f6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  .header {
    background: #111827;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
  }
  
  .logo span {
    font-size: 24px;
    font-weight: bold;
    color: #facc15;
  }
  
  .logo small {
    display: block;
    font-size: 12px;
    color: #ddd;
  }
  
  .menu {
    display: flex;
    gap: 24px;
  }
  
  .menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .menu a:hover {
    color: #facc15;
  }
  
  .menu-btn {
    display: none;
    background: none;
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
  }
  
  .hero {
    position: relative;
    min-height: 85vh;
    background: url("pictures/1.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
  }
  
  .hero-content {
    position: relative;
    max-width: 750px;
  }
  
  .hero h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 22px;
    margin-bottom: 30px;
  }
  
  .btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
  }
  
  .primary {
    background: #facc15;
    color: #111827;
  }
  
  .secondary {
    background: white;
    color: #111827;
    margin-left: 10px;
  }
  
  .info-bar {
    background: #facc15;
    padding: 25px 0;
  }
  
  .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #111827;
  }
  
  .section-desc {
    margin-bottom: 35px;
    color: #555;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  
  .card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  }
  
  .card h3 {
    margin-bottom: 12px;
    color: #111827;
  }
  
  .dark {
    background: #111827;
    color: white;
  }
  
  .dark h2 {
    color: white;
  }
  
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  
  .split img {
    width: 100%;
    border-radius: 12px;
  }
  
  .check-list {
    list-style: none;
    margin-top: 25px;
  }
  
  .check-list li {
    margin-bottom: 10px;
  }
  
  .check-list li::before {
    content: "✓ ";
    color: #facc15;
    font-weight: bold;
  }
  
  .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .features div {
    background: white;
    padding: 30px;
    border-left: 5px solid #facc15;
    border-radius: 10px;
  }
  
  .features strong {
    font-size: 30px;
    color: #facc15;
  }
  
  .gallery {
    background: white;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .contact {
    background: #e5e7eb;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .contact-box {
    margin-top: 25px;
    background: white;
    padding: 25px;
    border-radius: 10px;
  }
  
  .contact-box a {
    color: #111827;
    font-weight: bold;
  }
  
  .form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .form input,
  .form textarea {
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
  }
  
  .form textarea {
    min-height: 130px;
    resize: vertical;
  }
  
  .footer {
    background: #111827;
    color: white;
    text-align: center;
    padding: 25px;
  }
  
  @media (max-width: 900px) {
    .menu {
      display: none;
      position: absolute;
      top: 72px;
      right: 5%;
      background: #111827;
      flex-direction: column;
      padding: 20px;
      border-radius: 10px;
    }
  
    .menu.active {
      display: flex;
    }
  
    .menu-btn {
      display: block;
    }
  
    .hero h1 {
      font-size: 36px;
    }
  
    .hero p {
      font-size: 18px;
    }
  
    .info-grid,
    .cards,
    .features,
    .split,
    .gallery-grid,
    .contact-grid {
      grid-template-columns: 1fr;
    }
  
    .secondary {
      margin-left: 0;
      margin-top: 10px;
    }
  
    .btn {
      display: block;
      text-align: center;
      margin-bottom: 10px;
    }

    .map-btn {
        margin-top: 20px;
        text-align: center;
      }
      
      .map-container {
        margin-top: 40px;
      }
      
      .map-container iframe {
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
      }

      .faq-section {
        background: #f6f6f6;
      }
      
      .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 35px;
      }
      
      .faq-card {
        background: white;
        padding: 28px;
        border-radius: 14px;
        border-left: 5px solid #facc15;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      }
      
      .faq-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
        color: #111827;
      }
      
      .faq-card p {
        color: #444;
      }
      
      @media (max-width: 900px) {
        .faq-grid {
          grid-template-columns: 1fr;
        }
      }

      .shop-link {
        margin-top: 18px;
      }
      
      .shop-card {
        border-top: 5px solid #facc15;
      }

      .shop-nav {
        color: #facc15 !important;
      }
  }