:root {
  --primary-color: #ff8c42;
  --primary-dark: #e67a2f;
  --secondary-color: #2c3e50;
  --accent-color: #ffb366;
  --text-dark: #1a1a1a;
  --text-light: #4a4a4a;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
  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;
  font-size: 16px;
}

.navbar {
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  display: flex;
  align-items: center;
}

.logo-img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

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

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

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

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

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

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

.hero-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fff5ee 0%, #ffffff 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;
}

.section {
  padding: 5rem 0;
}

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

.bg-light {
  background-color: var(--bg-light);
}

.info-card,
.feature-card,
.value-card,
.distinction-card,
.outcome-card,
.concern-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.3s;
}

.info-card:hover,
.feature-card:hover,
.value-card:hover,
.distinction-card:hover,
.outcome-card:hover,
.concern-card:hover {
  transform: translateY(-5px);
}

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

.info-card h3,
.feature-card h3,
.value-card h3,
.distinction-card h3,
.outcome-card h3,
.concern-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.benefit-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.benefit-list li:last-child {
  border-bottom: none;
}

.approach-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
}

.approach-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: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.approach-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow);
  height: 100%;
}

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

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

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

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

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

.cta-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 4rem 0;
  color: var(--white);
  text-align: center;
}

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

.page-header .lead {
  font-size: 1.25rem;
}

.service-detail {
  margin-bottom: 4rem;
}

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

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

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

.format-card,
.expectation-card,
.faq-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
}

.expectation-number {
  width: 50px;
  height: 50px;
  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-bottom: 1rem;
}

.contact-info-section {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.contact-method {
  margin-bottom: 2rem;
}

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

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

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

.consultation-types-box {
  background: var(--primary-color);
  color: var(--white);
  padding: 2rem;
  border-radius: 10px;
}

.consultation-types-box h4 {
  margin-bottom: 1rem;
}

.consultation-types-box ul {
  list-style: none;
  padding: 0;
}

.consultation-types-box li {
  padding: 0.5rem 0;
}

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

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

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.form-check-label {
  font-weight: 400;
}

.form-check-label a {
  color: var(--primary-color);
}

.next-step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
}

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

.thank-you-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fff5ee 0%, #ffffff 100%);
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.thank-you-message {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin: 2rem 0;
}

.thank-you-list {
  text-align: left;
  max-width: 500px;
  margin: 1.5rem auto;
}

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

.thank-you-actions .btn {
  margin: 0.5rem;
}

.thank-you-contact {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 10px;
}

.prep-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
}

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

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

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

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

.policy-content h4 {
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.policy-content ul {
  margin-bottom: 1.5rem;
}

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

.contact-box,
.contact-info-box {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
  padding: 1rem;
  border-radius: 5px;
  margin-bottom: 2rem;
}

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

.footer h4 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer p {
  margin-bottom: 0.75rem;
}

.footer-tagline {
  color: var(--accent-color);
  font-style: italic;
}

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

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

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

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

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

.footer-legal {
  margin-bottom: 1rem;
}

.footer-legal a {
  color: var(--white);
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-copyright {
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.8;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0 1rem 0 0;
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-buttons .btn {
  margin: 0.25rem;
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  padding: 2rem;
  overflow-y: auto;
}

.cookie-modal-content {
  max-width: 600px;
  margin: 2rem auto;
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
}

.cookie-modal-content h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cookie-category {
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 5px;
  margin-bottom: 1rem;
}

.cookie-category label {
  display: block;
  font-weight: 600;
  cursor: pointer;
}

.cookie-description {
  display: block;
  font-weight: 400;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.cookie-modal-buttons {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-policy-link {
  margin-top: 1rem;
  text-align: center;
}

.cookie-policy-link a {
  color: var(--primary-color);
}

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

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

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

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

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

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

  .section {
    padding: 3rem 0;
  }

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

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

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

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content p {
    margin: 0 0 1rem 0;
  }

  .cookie-buttons {
    justify-content: center;
  }

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

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

  .approach-number,
  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .thank-you-icon {
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }
}
