
  :root {
    --primary: #1c5d99;
    --primary-dark: #0a4076;
    --secondary: #ff6b35;
    --secondary-dark: #e54e1b;
    --light: #f5f5f5;
    --dark: #333333;
    --gray: #777777;
    --light-gray: #eeeeee;
    --success: #28a745;
    --danger: #dc3545;
    --white: #ffffff;
    --black: #000000;
  }

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

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

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.2;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
  }

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

  p {
    margin-bottom: 1rem;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

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

  a:hover {
    color: var(--primary-dark);
  }

  .btn-primary {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
  }

  .btn-primary:hover {
    background-color: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
  }

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

  /* Hero Section */
  .hero-section {
    position: relative;
    padding: 100px 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
  }

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

  .hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 1;
  }

  .hero-section .container {
    position: relative;
    z-index: 2;
  }

  .hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }

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

  /* Categories Section */
  .categories-section {
    padding: 80px 0;
    background-color: var(--white);
  }

  .categories-section h2 {
    text-align: center;
    margin-bottom: 3rem;
  }

  .categories-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .category-card {
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

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

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

  .category-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary);
  }

  .category-card p {
    padding: 0 20px;
    margin-bottom: 20px;
  }

  .category-card .btn-primary {
    margin: 0 20px 20px;
  }

  /* Featured Section */
  .featured-section {
    position: relative;
    padding: 80px 0;
    color: var(--white);
    overflow: hidden;
  }

  .featured-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    z-index: 1;
  }

  .featured-section .container {
    position: relative;
    z-index: 2;
  }

  .featured-content h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
  }

  .featured-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .featured-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  .featured-item:hover {
    transform: translateY(-5px);
  }

  .featured-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
  }

  .featured-item h3 {
    color: var(--secondary);
    margin-bottom: 10px;
  }

  .features-list {
    list-style: none;
    margin-top: 15px;
  }

  .features-list li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
  }

  .features-list i {
    color: var(--secondary);
    margin-right: 10px;
  }

  /* Seasonal Section */
  .seasonal-section {
    padding: 80px 0;
    background-color: var(--light);
  }

  .seasonal-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
  }

  .seasonal-tabs {
    max-width: 1000px;
    margin: 0 auto;
  }

  .tab-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }

  .tab-btn {
    padding: 12px 20px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--dark);
  }

  .tab-btn i {
    margin-right: 8px;
  }

  .tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
  }

  .tab-pane {
    display: none;
  }

  .tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .seasonal-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .seasonal-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .seasonal-item:hover {
    transform: translateY(-5px);
  }

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

  .seasonal-item h3 {
    padding: 20px 20px 10px;
    color: var(--primary);
  }

  .seasonal-item p {
    padding: 0 20px 20px;
  }

  /* Testimonials Section */
  .testimonials-section {
    position: relative;
    padding: 80px 0;
    color: var(--white);
    overflow: hidden;
  }

  .testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    z-index: 1;
  }

  .testimonials-section .container {
    position: relative;
    z-index: 2;
  }

  .testimonials-section h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 3rem;
  }

  .testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
  }

  .testimonial-slide {
    width: 100%;
  }

  .testimonial-content {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .testimonial-content i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    display: block;
  }

  .testimonial-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
  }

  .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
  }

  .author-info h4 {
    color: var(--white);
    margin-bottom: 5px;
  }

  .author-info p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--light-gray);
  }

  .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
  }

  .prev-btn, .next-btn {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .prev-btn:hover, .next-btn:hover {
    background-color: var(--white);
    color: var(--dark);
  }

  .slider-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
  }

  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .dot.active {
    background-color: var(--white);
  }

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

  .newsletter-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .newsletter-content {
    max-width: 600px;
    text-align: center;
    margin-bottom: 40px;
  }

  .newsletter-content h2 {
    margin-bottom: 1.5rem;
  }

  .newsletter-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

  .form-group input, 
  .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-size: 1rem;
  }

  .checkbox-group {
    display: flex;
    align-items: center;
  }

  .checkbox-group input {
    width: auto;
    margin-right: 10px;
  }

  .checkbox-group label {
    margin-bottom: 0;
  }

  .newsletter-form .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }

  .newsletter-form .btn-primary i {
    margin-left: 8px;
  }

  .newsletter-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .newsletter-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  /* Media Queries */
  @media (min-width: 768px) {
    .categories-grid,
    .featured-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .seasonal-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-section .container {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }

    .newsletter-content {
      flex: 1;
      text-align: left;
      margin-bottom: 0;
      margin-right: 40px;
    }

    .newsletter-image {
      flex: 1;
    }
  }

  @media (min-width: 1024px) {
    .categories-grid {
      grid-template-columns: repeat(4, 1fr);
    }

    .featured-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .hero-section h1 {
      font-size: 4rem;
    }

    .hero-text {
      font-size: 1.4rem;
    }
  }
