:root {
  --primary-color: #7c3aed;
  --primary-dark: #5b21b6;
  --primary-light: #a78bfa;
  --neutral-dark: #1f2937;
  --neutral-medium: #6b7280;
  --neutral-light: #f3f4f6;
  --white: #ffffff;
  --accent-color: #ec4899;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--neutral-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand .logo {
  height: 40px;
  width: auto;
}

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

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

.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: 0 4px 12px rgba(124, 58, 237, 0.3);
}

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

.hero-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--neutral-medium);
  line-height: 1.6;
}

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

.info-card,
.value-card,
.method-card,
.why-card,
.process-step {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover,
.value-card:hover,
.method-card:hover,
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.icon-wrapper {
  margin-bottom: 1.5rem;
}

.icon-large {
  font-size: 3rem;
}

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

.benefit-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--neutral-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

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

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

.expectations-list li {
  padding: 1rem 0 1rem 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--neutral-light);
}

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

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  border-top: 4px solid var(--accent-color);
}

.testimonial-text {
  font-style: italic;
  color: var(--neutral-medium);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--neutral-dark);
}

.concern-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.concern-item h5 {
  font-weight: 600;
  color: var(--neutral-dark);
  margin: 0;
}

.why-card {
  text-align: center;
}

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

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

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

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

.cta-section h2 {
  color: var(--white);
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

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

.btn-light:hover {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

.page-header h1 {
  color: var(--white);
}

.page-header .lead {
  color: rgba(255, 255, 255, 0.9);
}

.commitment-box {
  background: var(--primary-light);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  padding: 3rem;
  border-radius: 12px;
  color: var(--white);
}

.commitment-box h2 {
  color: var(--white);
}

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

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

.service-detail {
  padding: 2rem 0;
}

.service-detail h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.service-detail h4 {
  color: var(--neutral-dark);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.service-detail ul {
  padding-left: 1.5rem;
}

.service-detail li {
  margin-bottom: 0.75rem;
  color: var(--neutral-medium);
}

.process-step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: 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: 0 auto 1.5rem;
}

.process-step h4 {
  color: var(--neutral-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-box {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.disclaimer-box h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.disclaimer-box a {
  color: var(--primary-color);
  font-weight: 600;
}

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

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

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.15);
}

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

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

.contact-info {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 12px;
}

.contact-item {
  line-height: 1.8;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

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

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

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

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

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
}

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

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.checkmark {
  color: var(--white);
  font-size: 3rem;
  font-weight: bold;
}

.next-steps h3 {
  color: var(--primary-color);
}

.step-box {
  background: var(--neutral-light);
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
}

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

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

.contact-reminder {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 8px;
}

.contact-reminder h4 {
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.phone-large {
  font-size: 1.75rem;
  font-weight: 700;
}

.phone-large a {
  color: var(--primary-color);
  text-decoration: none;
}

.phone-large a:hover {
  text-decoration: underline;
}

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

.policy-text h2 {
  color: var(--primary-color);
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.policy-text h3 {
  color: var(--neutral-dark);
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-text p {
  margin-bottom: 1.25rem;
  color: var(--neutral-medium);
  line-height: 1.8;
}

.policy-text ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-text li {
  margin-bottom: 0.75rem;
  color: var(--neutral-medium);
  line-height: 1.7;
}

.policy-text a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.policy-text a:hover {
  text-decoration: underline;
}

.contact-details {
  background: var(--neutral-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.alert-box {
  background: var(--accent-color);
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.alert-box h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.alert-box p {
  color: var(--white);
  margin-bottom: 0;
}

.footer {
  margin-top: 4rem;
}

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

.footer p {
  color: rgba(255, 255, 255, 0.8);
}

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

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

.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 a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--white);
  text-decoration: none;
}

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

.footer-legal {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

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

.cookie-settings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  max-width: 500px;
  width: 90%;
}

.cookie-settings-content h3 {
  color: var(--neutral-dark);
  margin-bottom: 1.5rem;
}

.cookie-option {
  padding: 1rem;
  border-bottom: 1px solid var(--neutral-light);
}

.cookie-option label {
  display: block;
  cursor: pointer;
}

.cookie-option strong {
  display: block;
  color: var(--neutral-dark);
  margin-bottom: 0.25rem;
}

.cookie-option p {
  color: var(--neutral-medium);
  margin: 0;
  font-size: 0.9rem;
}

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

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

  .navbar-nav {
    margin-top: 1rem;
  }

  .btn-primary.ml-lg-3 {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
  }

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

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

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

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

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

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