
  :root {
    --primary: #e63946;
    --secondary: #1d3557;
    --accent: #f1c40f;
    --light: #f1faee;
    --dark: #1d3557;
    --gray: #6c757d;
    --success: #2ecc71;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

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

  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #f8f9fa;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  section {
    padding: 5rem 0;
    position: relative;
  }

  h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p {
    margin-bottom: 1.5rem;
  }

  a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
  }

  a:hover {
    color: var(--secondary);
  }

  .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.2;
  }

  /* Hero Section */
  .hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--secondary);
    color: var(--light);
    padding: 0;
    overflow: hidden;
  }

  .hero-section .bg-image {
    opacity: 0.3;
  }

  .hero-section .container {
    padding: 4rem 0;
  }

  .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
  }

  .cta-button:hover {
    background-color: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
    color: white;
  }

  /* Current Promotions */
  .current-promotions {
    background-color: var(--light);
  }

  .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--gray);
  }

  .promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

  .promo-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    position: relative;
    transition: all 0.3s ease;
  }

  .promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  .promo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    z-index: 1;
  }

  .promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .promo-content {
    padding: 1.5rem;
  }

  .promo-description {
    color: var(--gray);
    margin-bottom: 1.5rem;
  }

  .price-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 0;
  }

  .new-price {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
  }

  .promo-button {
    display: block;
    background-color: var(--secondary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .promo-button:hover {
    background-color: var(--primary);
    color: white;
  }

  /* Seasonal Offer */
  .seasonal-offer {
    background-color: var(--secondary);
    color: var(--light);
    text-align: center;
    padding: 6rem 0;
  }

  .seasonal-offer h2 {
    color: var(--light);
  }

  .offer-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
  }

  .offer-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-align: left;
  }

  .offer-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
  }

  .offer-list li i {
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--accent);
  }

  .offer-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
  }

  .offer-button:hover {
    background-color: #f39c12;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
    color: var(--dark);
  }

  /* Loyalty Program */
  .loyalty-program {
    background-color: #f8f9fa;
    padding: 6rem 0;
  }

  .loyalty-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: var(--gray);
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .benefit-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
  }

  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .benefit-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
  }

  .loyalty-cta {
    text-align: center;
    margin-top: 3rem;
  }

  .loyalty-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
  }

  .loyalty-button:hover {
    background-color: #d32f2f;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
    color: white;
  }

  .loyalty-note {
    color: var(--gray);
    font-size: 0.9rem;
  }

  /* Newsletter Section */
  .newsletter-section {
    background-color: var(--light);
    padding: 5rem 0;
  }

  .newsletter-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .newsletter-description {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
  }

  .newsletter-form {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    text-align: left;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

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

  .form-group input[type="email"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius);
    font-size: 1rem;
  }

  .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .checkbox-group input {
    margin-top: 0.3rem;
  }

  .checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
  }

  .newsletter-button {
    display: block;
    width: 100%;
    background-color: var(--primary);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .newsletter-button:hover {
    background-color: #d32f2f;
  }

  .newsletter-info {
    font-size: 0.9rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
  }

  /* FAQ Section */
  .faq-section {
    background-color: white;
    padding: 5rem 0;
  }

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

  .faq-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1rem;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
  }

  .faq-question h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
  }

  .faq-question i {
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }

  .faq-answer {
    padding: 0 0 1.5rem;
    display: none;
  }

  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }

  .faq-item.active .faq-answer {
    display: block;
  }

  /* Utility Classes */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }

  /* Responsive */
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
    
    h2 {
      font-size: 1.8rem;
    }
    
    .hero-subtitle {
      font-size: 1.2rem;
    }
    
    .promo-grid {
      grid-template-columns: 1fr;
    }
    
    .benefits-grid {
      grid-template-columns: 1fr;
    }
    
    section {
      padding: 4rem 0;
    }
  }

  @media (max-width: 576px) {
    .container {
      width: 95%;
    }
    
    h1 {
      font-size: 1.8rem;
    }
    
    h2 {
      font-size: 1.6rem;
    }
    
    .hero-section {
      min-height: 60vh;
    }
    
    .newsletter-form {
      padding: 1.5rem;
    }
  }
