:root {
  --primary-color: #dc3545;
  --primary-dark: #b02a37;
  --secondary-color: #2c3e50;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-dark: #2c3e50;
  --white: #ffffff;
  --border-color: #dee2e6;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px 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 {
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

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

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

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

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

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

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

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

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

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

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

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

.section-light {
  padding: 5rem 0;
  background-color: var(--white);
}

.section-dark {
  padding: 5rem 0;
  background-color: var(--bg-dark);
  color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.section-dark .section-title {
  color: var(--white);
}

.feature-card {
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.challenge-list,
.info-list,
.prep-list,
.focus-list,
.expectation-list,
.next-steps {
  list-style: none;
  padding-left: 0;
}

.challenge-list li,
.info-list li,
.prep-list li,
.focus-list li,
.expectation-list li,
.next-steps li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.challenge-list li:before,
.info-list li:before,
.prep-list li:before,
.focus-list li:before,
.expectation-list li:before,
.next-steps li:before {
  content: "•";
  color: var(--primary-color);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.section-dark .challenge-list li:before,
.section-dark .info-list li:before,
.section-dark .prep-list li:before,
.section-dark .focus-list li:before {
  color: var(--primary-color);
}

.principle-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.principle-card:hover {
  box-shadow: var(--shadow-lg);
}

.principle-card h3 {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.audience-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  text-align: center;
  transition: background 0.3s ease;
}

.audience-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.audience-card h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1rem;
}

.card {
  border: 1px solid var(--border-color);
  margin-bottom: 0.5rem;
}

.card-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.card-header .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  width: 100%;
  text-align: left;
  font-weight: 500;
}

.card-header .btn-link:hover {
  color: var(--primary-color);
  text-decoration: none;
}

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

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

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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

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

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

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

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.approach-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
}

.approach-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.principle-box {
  background: var(--white);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  height: 100%;
}

.principle-box h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.disclaimer-box {
  background: var(--bg-light);
  border: 2px solid var(--primary-color);
  padding: 2rem;
  border-radius: 8px;
}

.contact-info {
  margin-top: 2rem;
}

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

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

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

.contact-form-wrapper {
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: 8px;
}

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

.form-control {
  border: 1px solid var(--border-color);
  padding: 0.75rem;
  border-radius: 4px;
}

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

.text-accent {
  color: var(--primary-color);
}

.contact-details {
  margin-top: 2rem;
}

.thank-you-section {
  padding: 5rem 0;
  min-height: 60vh;
}

.thank-you-content {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

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

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

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

.thank-you-note {
  margin: 2rem 0;
}

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

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

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

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

.legal-content h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

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

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

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

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffc107;
  color: #856404;
  border-radius: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  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: underline;
}

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

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

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

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

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

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0;
  }

  .section-light,
  .section-dark {
    padding: 3rem 0;
  }

  .cookie-banner .text-right {
    text-align: center !important;
    margin-top: 1rem;
  }

  .thank-you-actions .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0 !important;
  }
}
