:root {
  --primary-color: #f4c430;
  --primary-dark: #d4a822;
  --secondary-color: #2c3e50;
  --text-dark: #1a1a1a;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px 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;
  background-color: var(--bg-white);
}

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-logo {
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

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

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

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

.hero-overlay {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  color: white;
  z-index: 2;
}

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

.hero-content .lead {
  font-size: 1.25rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.section-padding {
  padding: 80px 0;
}

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

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

.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: 8px;
  transition: all 0.3s ease;
}

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

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

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

.feature-card {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  padding: 1.5rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  line-height: 1;
}

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

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

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

.topic-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.topic-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.topic-card h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.audience-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all 0.3s ease;
}

.audience-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

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

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

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

.step-content h5 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.faq-card {
  border: none;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.faq-card .card-header {
  background: white;
  border: none;
  padding: 0;
}

.faq-card .btn-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  width: 100%;
  text-align: left;
  padding: 1.25rem;
}

.faq-card .btn-link:hover {
  color: var(--primary-color);
}

.faq-card .card-body {
  padding: 1.25rem;
  color: var(--text-light);
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary-color), #34495e);
  color: white;
  padding: 80px 0;
}

.cta-section h2 {
  color: white;
}

.cta-section .lead {
  opacity: 0.9;
}

.footer {
  background: var(--secondary-color);
  color: white;
  padding: 60px 0 30px;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.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 p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-divider {
  background: rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

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

.page-header {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  margin-top: 70px;
  overflow: hidden;
}

.page-header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: relative;
  width: 100%;
  padding: 80px 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
}

.page-header h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.principle-card,
.why-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.principle-card:hover,
.why-card:hover {
  box-shadow: var(--shadow-md);
}

.principle-card h4,
.why-card h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.disclaimer-box {
  background: #fff9e6;
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-box ul {
  margin-bottom: 1rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.form-label {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

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

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

.form-check-label {
  color: var(--text-light);
}

.contact-info-card {
  padding: 2rem;
}

.contact-icon {
  font-size: 2.5rem;
  line-height: 1;
}

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

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

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

.expectation-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

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

.expectation-content h5 {
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--success-color);
  color: white;
  font-size: 4rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.thank-you-info {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

.legal-section {
  padding: 100px 0 60px;
}

.legal-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 2rem;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h3 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

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

.legal-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

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

.legal-content a {
  color: var(--primary-color);
  text-decoration: none;
}

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

.disclaimer-highlight {
  background: #fff9e6;
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-highlight h3 {
  margin-top: 0;
}

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

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

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

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

.cookie-banner a:hover {
  text-decoration: underline;
}

.btn-secondary {
  background-color: #6b7280;
  border-color: #6b7280;
  color: white;
}

.btn-secondary:hover {
  background-color: #4b5563;
  border-color: #4b5563;
}

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

  .section-padding {
    padding: 60px 0;
  }

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

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

  .process-step,
  .expectation-step {
    flex-direction: column;
  }

  .step-number,
  .expectation-number {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .footer-legal-link {
    margin-left: 0;
    margin-right: 1rem;
    display: inline-block;
    margin-top: 0.5rem;
  }

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

@media (max-width: 576px) {
  .cookie-banner .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .cookie-banner .mr-2 {
    margin-right: 0;
  }
}
