  :root {
      --primary-gold: #ffcc00;
      --primary-orange: #e67e22;
      --wood-dark: #3e2723;
      --wood-light: #5d4037;
      --forest-green: #2ecc71;
      --text-light: #f5f5f5;
      --text-dark: #333;
      --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      --radius: 12px;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Poppins', sans-serif;
      background-color: #fdf6e3;
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4 {
      font-family: 'Fredoka One', cursive;
      color: var(--wood-dark);
      margin-bottom: 1rem;
  }

  a {
      text-decoration: none;
      color: inherit;
  }

  ul {
      list-style: none;
  }


  .btn {
      display: inline-block;
      padding: 12px 24px;
      border-radius: var(--radius);
      font-weight: 600;
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
      border: none;
      font-family: 'Fredoka One', cursive;
      text-transform: uppercase;
      letter-spacing: 1px;
  }

  .btn-primary {
      background-color: var(--primary-orange);
      color: white;
      box-shadow: 0 4px 0 #d35400;
  }

  .btn-primary:hover {
      transform: translateY(-2px);
      background-color: #d35400;
  }

  .btn-secondary {
      background-color: var(--forest-green);
      color: white;
      box-shadow: 0 4px 0 #27ae60;
  }

  .btn-secondary:hover {
      transform: translateY(-2px);
      background-color: #27ae60;
  }


  header {
      background-color: var(--wood-dark);
      color: var(--text-light);
      padding: 15px 5%;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      box-shadow: var(--shadow);
  }

  .logo {
      font-size: 1.5rem;
      font-family: 'Fredoka One', cursive;
      color: var(--primary-gold);
  }

  .nav-links {
      display: flex;
      gap: 20px;
  }

  .nav-links a {
      font-size: 0.95rem;
      transition: color 0.3s;
  }

  .nav-links a:hover {
      color: var(--primary-gold);
  }

  .burger {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
  }


  #hero {
      height: 100vh;
      width: 100%;
      background-image: url("../img/hero.webp");
      background-size: cover;
      background-position: center;
      background-attachment: fixed;

      background-color: #5d4037;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      padding-top: 60px;
  }


  #hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
  }

  .hero-content {
      position: relative;
      z-index: 2;
      color: white;
      max-width: 800px;
      padding: 20px;
  }

  .hero-content h1 {
      font-size: 3rem;
      color: var(--primary-gold);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  }

  .hero-content p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
  }

  .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
  }


  section {
      padding: 80px 10%;
  }

  section:nth-child(even) {
      background-color: #fff;
  }

  section:nth-child(odd) {
      background-color: #fdf6e3;
  }

  .section-title {
      text-align: center;
      font-size: 2.2rem;
      margin-bottom: 40px;
      position: relative;
  }

  .section-title::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: var(--primary-orange);
      margin: 10px auto 0;
      border-radius: 2px;
  }


  .about-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
  }

  .highlights {
      margin-top: 20px;
      text-align: left;
      background: #fff3cd;
      padding: 20px;
      border-radius: var(--radius);
      border: 2px solid var(--primary-gold);
  }

  .highlights li {
      margin-bottom: 10px;
  }

  .highlights i {
      color: var(--primary-orange);
      margin-right: 10px;
  }


  .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
  }

  .feature-card {
      background: white;
      padding: 30px;
      border-radius: var(--radius);
      text-align: center;
      box-shadow: var(--shadow);
      transition: transform 0.3s;
      border-bottom: 4px solid var(--primary-orange);
  }

  .feature-card:hover {
      transform: translateY(-5px);
  }

  .feature-icon {
      font-size: 3rem;
      color: var(--wood-light);
      margin-bottom: 20px;
  }


  .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
  }

  .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      cursor: pointer;
      height: 250px;
      background-color: #ccc;
  }

  .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
  }

  .gallery-item:hover img {
      transform: scale(1.1);
  }


  .lightbox {
      display: none;
      position: fixed;
      z-index: 2000;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      padding: 20px;
  }

  .lightbox img {
      max-width: 100%;
      max-height: 90vh;
      border-radius: var(--radius);
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  }

  .lightbox.active {
      display: flex;
  }


  #download {
      background-color: var(--wood-light);
      color: white;
      text-align: center;
      background-image: linear-gradient(rgba(62, 39, 35, 0.9), rgba(62, 39, 35, 0.9)), url("../img/hero.webp");
      background-size: cover;
      background-attachment: fixed;
  }

  #download h2 {
      color: var(--primary-gold);
  }

  .download-buttons {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
      margin-top: 40px;
  }

  .store-btn {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px 30px;
      background: #000;
      color: #fff;
      border-radius: 10px;
      text-align: left;
      transition: transform 0.2s, opacity 0.2s;
      min-width: 220px;
  }

  .store-btn:hover {
      transform: scale(1.05);
      opacity: 0.9;
  }

  .store-btn i {
      font-size: 2.5rem;
  }

  .store-text span {
      display: block;
      font-size: 0.8rem;
      text-transform: uppercase;
  }

  .store-text strong {
      display: block;
      font-size: 1.2rem;
      font-weight: 600;
  }


  .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
  }

  .review-card {
      background: white;
      padding: 25px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      position: relative;
  }

  .review-card i.fa-quote-right {
      position: absolute;
      top: 20px;
      right: 20px;
      color: #eee;
      font-size: 3rem;
  }

  .stars {
      color: var(--primary-gold);
      margin-bottom: 10px;
  }

  .reviewer {
      margin-top: 15px;
      font-weight: bold;
      color: var(--wood-light);
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .summary-rating {
      text-align: center;
      margin-top: 40px;
      font-size: 1.2rem;
      font-weight: bold;
      color: var(--wood-light);
  }


  .accordion {
      max-width: 800px;
      margin: 0 auto;
  }

  .accordion-item {
      background: white;
      margin-bottom: 15px;
      border-radius: var(--radius);
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      overflow: hidden;
  }

  .accordion-header {
      padding: 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      font-weight: 600;
      transition: background 0.3s;
  }

  .accordion-header:hover {
      background: #f9f9f9;
  }

  .accordion-header i {
      transition: transform 0.3s;
  }

  .accordion-header.active i {
      transform: rotate(180deg);
  }

  .accordion-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      background: #fdf6e3;
  }

  .accordion-body p {
      padding: 20px;
      border-top: 1px solid #eee;
  }


  .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
      max-width: 1000px;
      margin: 0 auto;
  }

  .contact-form {
      flex: 1;
      min-width: 300px;
  }

  .contact-info {
      flex: 1;
      min-width: 300px;
      background: white;
      padding: 30px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      height: fit-content;
  }

  .form-group {
      margin-bottom: 20px;
  }

  .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 600;
  }

  .form-group input,
  .form-group textarea {
      width: 100%;
      padding: 12px;
      border: 2px solid #ddd;
      border-radius: 8px;
      font-family: inherit;
      transition: border-color 0.3s;
  }

  .form-group input:focus,
  .form-group textarea:focus {
      border-color: var(--primary-orange);
      outline: none;
  }

  .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 0.9rem;
  }

  .checkbox-group input {
      margin-top: 5px;
      width: auto;
  }

  .success-msg {
      display: none;
      background: var(--forest-green);
      color: white;
      padding: 15px;
      border-radius: var(--radius);
      margin-top: 20px;
      text-align: center;
  }

  .info-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 20px;
  }

  .info-item i {
      font-size: 1.5rem;
      color: var(--primary-orange);
      margin-top: 5px;
  }


  footer {
      background: var(--wood-dark);
      color: #bbb;
      padding: 50px 10% 20px;
  }

  .footer-content {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 30px;
      border-bottom: 1px solid #555;
      padding-bottom: 30px;
  }

  .footer-logo h3 {
      color: var(--primary-gold);
  }

  .footer-links ul {
      display: flex;
      gap: 20px;
  }

  .footer-links a:hover,
  .footer-legal a:hover {
      color: white;
  }

  .footer-socials a {
      font-size: 1.5rem;
      margin-left: 15px;
      color: #bbb;
      transition: color 0.3s;
  }

  .footer-socials a:hover {
      color: var(--primary-gold);
  }

  .copyright {
      text-align: center;
      font-size: 0.9rem;
  }


  @media (max-width: 768px) {
      .nav-links {
          position: absolute;
          right: 0px;
          top: 70px;
          background: var(--wood-dark);
          flex-direction: column;
          width: 100%;
          align-items: center;
          transform: translateX(100%);
          transition: transform 0.3s ease-in;
          padding: 20px 0;
      }

      .nav-links.nav-active {
          transform: translateX(0%);
      }

      .burger {
          display: block;
      }

      .hero-content h1 {
          font-size: 2.2rem;
      }

      .gallery-grid {
          grid-template-columns: 1fr;
      }

      .footer-content {
          flex-direction: column;
          text-align: center;
      }

      .footer-links ul {
          justify-content: center;
          flex-wrap: wrap;
      }
  }

  .policy-main {
      flex: 1;
      max-width: 900px;
      margin: 80px auto;
      padding: 0 20px;
  }

  .policy-container {
      background: white;
      padding: 40px;
      border-radius: var(--radius);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

  .policy-container h1 {
      margin-bottom: 30px;
      border-bottom: 4px solid var(--primary-gold);
      display: inline-block;
      padding-bottom: 10px;
  }

  .policy-section {
      margin-bottom: 30px;
  }

  .policy-section h2 {
      font-size: 1.4rem;
      margin-bottom: 15px;
      color: #5d4037;
  }

  .policy-section p {
      margin-bottom: 10px;
      text-align: justify;
  }.policy-section ul {
            list-style: disc;
            margin-left: 20px;
            margin-bottom: 20px;
        }
        
        .policy-section li { margin-bottom: 8px; }@media (max-width: 768px) {
            .policy-container { padding: 25px; }
            .policy-header h1 { font-size: 1.8rem; }
        }