/* Hero Section */
.hero {
    background: linear-gradient(rgba(60, 224, 139, 0.5), rgba(9, 9, 9, 0.5)), url('bg.jpg') no-repeat center center/cover;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  /* Products Highlight */
  .bg-light {
    background-color: var(--light-gray);
  }
  
  .highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .highlight-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .highlight-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .highlight-icon {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: 20px;
  }
  
  .highlight-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-green);
  }
  
  .highlight-item p {
    margin-bottom: 20px;
  }
  
  /* Testimonial */
  .testimonial {
    background-color: var(--white);
  }
  
  .testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }
  
  blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
  }
  
  blockquote:before, blockquote:after {
    content: '"';
    font-size: 48px;
    color: var(--primary-green);
    opacity: 0.3;
    position: absolute;
  }
  
  blockquote:before {
    top: -20px;
    left: -40px;
  }
  
  blockquote:after {
    bottom: -40px;
    right: -40px;
  }
  
  cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-green);
  }
  
  /* CTA Section */
  .bg-primary {
    background-color: var(--primary-green);
    color: var(--white);
  }
  
  .cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .cta p {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .btn-light {
    background-color: var(--white);
    color: var(--primary-green);
  }
  
  .btn-light:hover {
    background-color: var(--light-gray);
    color: var(--primary-green);
  }
  
  .btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
  }
  
  .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-green);
  }
  
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 36px;
    }
    
    .hero p {
      font-size: 18px;
    }
    
    .hero-buttons, .cta-buttons {
      flex-direction: column;
      gap: 15px;
    }
    
    blockquote {
      font-size: 20px;
    }
    
    .highlight-grid {
      grid-template-columns: 1fr;
    }
  }