:root {
  --primary-color: #4caf50;
  --primary-dark: #388e3c;
  --primary-light: #81c784;
  --accent-color: #ff9800;
  --text-dark: #212121;
  --text-medium: #757575;
  --text-light: #bdbdbd;
  --bg-light: #f5f5f5;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-hover: rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand .brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  overflow: hidden;
}

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

.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-hero {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-hero:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
  color: var(--white);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.format-card,
.topic-card,
.testimonial-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.format-card:hover,
.topic-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-hover);
}

.format-card .card-body,
.testimonial-card .card-body {
  padding: 2rem;
}

.format-card .card-title,
.topic-card .card-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.topic-card .card-img-top {
  height: 200px;
  object-fit: cover;
}

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

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

.benefits-list li:before,
.audience-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
}

.coverage-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 3px 15px var(--shadow);
  height: 100%;
}

.coverage-item h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.process-step h5 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 15px var(--shadow);
}

.faq-item h5 {
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  padding: 5rem 0;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  padding: 8rem 0 5rem;
  margin-top: 70px;
}

.page-header-small {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  padding: 6rem 0 3rem;
  margin-top: 70px;
}

.principle-card,
.offer-item,
.why-item,
.expect-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 3px 15px var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
}

.principle-card:hover,
.offer-item:hover,
.why-item:hover,
.expect-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px var(--shadow-hover);
}

.principle-card h5,
.offer-item h5,
.why-item h5,
.expect-item h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.contact-info-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-form-wrapper {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
}

.form-control {
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  margin-top: 70px;
}

.thank-you-content {
  background: var(--white);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px var(--shadow);
}

.success-icon {
  display: inline-block;
}

.step-box {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 10px;
  height: 100%;
}

.step-box h6 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.policy-section h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.policy-section h5 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.policy-section ul {
  margin-bottom: 1rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
}

.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

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

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

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -5px 20px var(--shadow);
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: var(--primary-light);
}

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

  .thank-you-content {
    padding: 2rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 60vh;
    min-height: 400px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .btn-hero {
    padding: 0.75rem 2rem;
    font-size: 1rem;
  }
}
