:root {
  --primary-color: #4caf50;
  --primary-dark: #388e3c;
  --primary-light: #81c784;
  --accent-color: #2196f3;
  --text-dark: #212121;
  --text-medium: #757575;
  --text-light: #bdbdbd;
  --bg-white: #ffffff;
  --bg-light: #f5f5f5;
  --bg-lighter: #fafafa;
  --border-color: #e0e0e0;
  --success-color: #4caf50;
  --danger-color: #f44336;
}

* {
  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;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
}

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

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

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
}

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

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

.hero-section img {
  border-radius: 12px;
}

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

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

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

.info-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.info-card h3,
.info-card h4,
.info-card h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.info-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.benefit-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h4,
.benefit-card h5 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.benefit-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

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

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.audience-card {
  background: var(--bg-lighter);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.audience-card h4 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.audience-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--text-dark);
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.875rem;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

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

.faq-item p {
  color: var(--text-medium);
  margin-bottom: 0;
}

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

.page-header {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.page-header-small {
  padding: 3rem 0 2rem;
  background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
}

.page-header-small h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.page-header-small p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.principle-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.principle-item:last-child {
  border-bottom: none;
}

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

.principle-item p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.form-control {
  border: 2px solid var(--border-color);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

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

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-info-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-info-card h5 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-info-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.thank-you-section {
  padding: 5rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}

.thank-you-content h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.thank-you-info {
  background: var(--bg-lighter);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.thank-you-info h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.thank-you-info ul {
  margin-bottom: 0;
}

.thank-you-actions {
  margin-top: 2rem;
}

.legal-content {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
  color: var(--primary-color);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  font-weight: 600;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.legal-content p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.legal-content ul {
  color: var(--text-medium);
  margin-bottom: 1rem;
  padding-left: 2rem;
}

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

.contact-info-box {
  background: var(--bg-lighter);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  margin-top: 1.5rem;
}

.contact-info-box p {
  margin-bottom: 0.5rem;
}

.disclaimer-notice {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.disclaimer-notice h3 {
  color: #e65100;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.disclaimer-notice p {
  color: var(--text-dark);
  margin-bottom: 0;
}

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

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

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

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

.footer {
  background: var(--text-dark);
  color: var(--bg-light);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-brand {
  color: var(--primary-light);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer h6 {
  color: var(--bg-white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

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

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

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

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1rem;
}

.footer-legal-link {
  color: var(--text-light);
  text-decoration: none;
  margin-left: 1rem;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--primary-light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(33, 33, 33, 0.95);
  color: var(--bg-white);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner p {
  margin-bottom: 0;
  color: var(--bg-white);
}

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

.cookie-banner .btn-light {
  background: var(--bg-white);
  color: var(--text-dark);
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

.cookie-banner .btn-outline-light {
  color: var(--bg-white);
  border-color: var(--bg-white);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

.cookie-banner .btn-outline-light:hover {
  background: var(--bg-white);
  color: var(--text-dark);
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 1rem;
  }

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

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

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

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

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

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

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

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

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

  .legal-content {
    padding: 1.5rem;
  }

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

  .footer-legal-link {
    display: block;
    margin: 0.5rem 0;
  }

  .cookie-banner .col-md-4 {
    margin-top: 1rem;
  }
}
