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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.navbar-custom {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2d8659 0%, #5bb381 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-light .navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #2d8659;
}

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 134, 89, 0.85) 0%, rgba(91, 179, 129, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content .lead {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #2d8659;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #236b46;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(45, 134, 89, 0.3);
}

.btn-secondary {
  background: #5bb381;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #4a9368;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(91, 179, 129, 0.3);
}

.section-content {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d8659;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
}

.bg-gradient {
  background: linear-gradient(135deg, #f8fffe 0%, #e8f7f0 100%);
}

.feature-card,
.audience-card,
.info-card,
.format-card,
.role-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover,
.audience-card:hover,
.info-card:hover,
.format-card:hover,
.role-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(45, 134, 89, 0.15);
}

.feature-card img,
.audience-card img,
.info-card img,
.format-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.feature-card h3,
.audience-card h3,
.info-card h3,
.format-card h3,
.role-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d8659;
  margin-bottom: 1rem;
}

.feature-card p,
.audience-card p,
.info-card p,
.format-card p,
.role-card p {
  color: #666;
  font-size: 1rem;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d8659;
  font-weight: bold;
  font-size: 1.2rem;
}

.disclaimer-box {
  background: linear-gradient(135deg, #fff9e6 0%, #ffeeb8 100%);
  border-left: 5px solid #f0ad4e;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-box h2,
.disclaimer-box h3 {
  color: #d68910;
  margin-bottom: 1rem;
}

.info-box {
  background: #ffffff;
  border: 2px solid #5bb381;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
}

.info-box h4 {
  color: #2d8659;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.value-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.value-card h4 {
  color: #2d8659;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  border-top: 2px solid #5bb381;
  padding-top: 1rem;
}

.testimonial-author strong {
  display: block;
  color: #2d8659;
  font-weight: 700;
}

.testimonial-author span {
  color: #888;
  font-size: 0.9rem;
}

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

.faq-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-item h4 {
  color: #2d8659;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: #666;
  margin: 0;
}

.cta-section {
  background: linear-gradient(135deg, #2d8659 0%, #5bb381 100%);
  color: #ffffff;
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background: #ffffff;
  color: #2d8659;
  font-weight: 700;
}

.cta-section .btn-primary:hover {
  background: #f0f0f0;
  color: #236b46;
}

.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer h4 {
  color: #5bb381;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer p {
  color: #cccccc;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #5bb381;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #2d2d2d;
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

.cookie-consent.show {
  display: block;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-content a {
  color: #5bb381;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.page-hero {
  background: linear-gradient(135deg, #2d8659 0%, #5bb381 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-hero p,
.page-hero .lead {
  font-size: 1.2rem;
  opacity: 0.95;
}

.contact-info {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  color: #2d8659;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #666;
  margin: 0;
}

.form-control:focus {
  border-color: #5bb381;
  box-shadow: 0 0 0 0.2rem rgba(91, 179, 129, 0.25);
}

.thank-you-section {
  padding: 6rem 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  max-width: 700px;
}

.thank-you-icon {
  color: #2d8659;
  margin-bottom: 2rem;
}

.thank-you-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d8659;
  margin-bottom: 1rem;
}

.thank-you-content .lead {
  font-size: 1.3rem;
  color: #666;
}

.thank-you-content p {
  color: #666;
  font-size: 1.1rem;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
  color: #2d8659;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: #5bb381;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  margin-left: 2rem;
  color: #666;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

.legal-content p {
  color: #666;
  margin-bottom: 1rem;
}

.legal-content strong {
  color: #2d8659;
}

.alert {
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.alert-warning {
  background-color: #fff9e6;
  border: 2px solid #f0ad4e;
  color: #856404;
}

.alert-info {
  background-color: #e8f7f0;
  border: 2px solid #5bb381;
  color: #155724;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .lead {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

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

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .legal-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 500px;
  }

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

  .section-content {
    padding: 3rem 0;
  }

  .btn-lg {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
}
