

/* SEO sektsioonide stiilid */

/* Hero section */
.hero-section {
  padding: 80px 0;
  position: relative;
  z-index: 5;
}

.hero-content {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #6E2502;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content p {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.stat {
  text-align: center;
  background-color: rgba(255,255,255,0.8);
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  min-width: 140px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: #fab500;
  margin-bottom: 8px;
  line-height: 1;
}

.stat p {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #6E2502;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Why choose us section */
.why-choose-us {
  background-color: #fdf9f0;
  padding: 100px 0;
  position: relative;
  z-index: 4;
}

.why-choose-us h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #6E2502;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature {
  text-align: center;
  padding: 40px 30px;
  background-color: rgba(255,255,255,0.9);
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-color: #fab500;
}

.feature-icon {
  font-size: 60px;
  margin-bottom: 25px;
  display: block;
  filter: grayscale(0.2);
}

.feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: #6E2502;
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  font-weight: 400;
}

/* FAQ section */
.faq-section {
  background-color: #fdf9f0;
  padding: 100px 0;
  position: relative;
  z-index: 3;
}

.faq-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #6E2502;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-item {
  background-color: rgba(255,255,255,0.95);
  padding: 35px;
  border-radius: 20px;
  border-left: 6px solid #fab500;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: #6E2502;
  margin-bottom: 15px;
  line-height: 1.4;
}

.faq-item p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  font-weight: 400;
}

/* Testimonials section */
.testimonials-section {
  background-color: #fdf9f0;
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

.testimonials-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #6E2502;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmin(340px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonial {
  background-color: rgba(255,255,255,0.95);
  padding: 45px 35px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-color: #fab500;
}

.testimonial::before {
  content: '"';
  font-size: 80px;
  color: #fab500;
  position: absolute;
  top: -10px;
  left: 25px;
  font-family: 'Playfair Display', serif;
  opacity: 0.7;
}

.testimonial p {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 400;
  padding-top: 15px;
}

.testimonial span {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  color: #6E2502;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive design */
@media screen and (max-width: 768px) {
  .hero-content h2,
  .why-choose-us h2,
  .faq-section h2,
  .testimonials-section h2 {
    font-size: 26px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .hero-stats {
    gap: 30px;
  }
  
  .stat h3 {
    font-size: 32px;
  }
  
  .stat p {
    font-size: 13px;
  }
  
  .feature h3 {
    font-size: 20px;
  }
  
  .feature p {
    font-size: 15px;
  }
  
  .faq-item h3 {
    font-size: 18px;
  }
  
  .faq-item p {
    font-size: 15px;
  }
  
  .testimonial p {
    font-size: 15px;
  }
  
  .features-grid,
  .faq-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .feature,
  .faq-item,
  .testimonial {
    padding: 25px 20px;
  }
  
  .hero-section,
  .why-choose-us,
  .faq-section,
  .testimonials-section {
    padding: 50px 0;
  }
}

@media screen and (max-width: 480px) {
  .hero-content h2,
  .why-choose-us h2,
  .faq-section h2,
  .testimonials-section h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  
  .hero-content p {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  
  .stat {
    padding: 20px 15px;
    min-width: 120px;
  }
  
  .stat h3 {
    font-size: 28px;
  }
  
  .stat p {
    font-size: 12px;
  }
  
  .feature h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .feature p {
    font-size: 14px;
  }
  
  .faq-item h3 {
    font-size: 17px;
    margin-bottom: 12px;
  }
  
  .faq-item p {
    font-size: 14px;
  }
  
  .testimonial p {
    font-size: 14px;
    margin-bottom: 15px;
    padding-top: 10px;
  }
  
  .testimonial span {
    font-size: 13px;
  }
  
  .testimonial::before {
    font-size: 60px;
    top: -5px;
    left: 20px;
  }
  
  .feature,
  .faq-item,
  .testimonial {
    padding: 20px 15px;
  }
  
  .hero-section,
  .why-choose-us,
  .faq-section,
  .testimonials-section {
    padding: 40px 0;
  }
  
  .features-grid,
  .faq-grid,
  .testimonials-grid {
    gap: 20px;
    padding: 0 15px;
  }
}
