:root {
  --primary-color: #ffd700;
  --primary-dark: #ffc700;
  --secondary-color: #2c3e50;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dee2e6;
  --success-color: #28a745;
}

* {
  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.75rem;
  font-weight: 700;
  color: var(--secondary-color);
  letter-spacing: -0.5px;
}

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

.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-dark);
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  padding: 4rem 0;
  width: 100%;
}

.hero-section h1 {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: var(--text-light);
  font-size: 1.25rem;
}

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

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

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

.btn-outline-secondary {
  color: var(--text-dark);
  border-color: var(--border-color);
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background-color: var(--background-light);
  border-color: var(--text-light);
  color: var(--text-dark);
}

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

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

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.card {
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-title {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.info-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.info-box h4 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.custom-list {
  list-style: none;
  padding: 0;
}

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

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

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

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

.process-step h5 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.audience-card,
.approach-item,
.mission-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.audience-card:hover,
.approach-item:hover,
.mission-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.audience-card h5,
.approach-item h5,
.mission-card h5 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

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

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.cta-section h2 {
  color: var(--text-dark);
  font-weight: 700;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--text-dark);
  border: none;
}

.cta-section .btn-primary:hover {
  background: var(--background-light);
  transform: translateY(-2px);
}

.footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.page-header {
  background: var(--background-light);
  padding: 5rem 0 3rem;
  margin-bottom: 0;
}

.page-header h1 {
  font-weight: 700;
  color: var(--secondary-color);
}

.page-header .lead {
  color: var(--text-light);
}

.contact-intro {
  color: var(--text-light);
}

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

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

.contact-info-card a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

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

.thank-you-content {
  padding: 3rem 0;
}

.thank-you-icon {
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

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

.info-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-card h5 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

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

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

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.legal-content a {
  color: var(--primary-dark);
  font-weight: 500;
}

.legal-content a:hover {
  text-decoration: underline;
}

.principle-item,
.educational-format .format-item {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.principle-item h5,
.principle-item h6,
.educational-format .format-item h6 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

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

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.cookie-banner a {
  color: var(--primary-dark);
  font-weight: 500;
}

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

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

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

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

  .hero-overlay {
    padding: 2rem 0;
  }

  .page-header {
    padding: 3rem 0 2rem;
  }

  .cookie-banner .btn {
    width: 48%;
    margin: 0.25rem 1%;
  }
}

@media (max-width: 576px) {
  .brand-name {
    font-size: 1.5rem;
  }

  .btn-primary,
  .btn-outline-primary {
    padding: 0.6rem 1.5rem;
  }
}
