:root {
  --primary-color: #4caf50;
  --primary-dark: #388e3c;
  --primary-light: #81c784;
  --accent-color: #8bc34a;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

* {
  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-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar {
  padding: 1rem 0;
}

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

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

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.consultation-card {
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

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

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

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

.coverage-card {
  border: 2px solid var(--border-color);
  transition: border-color 0.3s ease;
  height: 100%;
}

.coverage-card:hover {
  border-color: var(--primary-color);
}

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

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

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

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

.step-content {
  flex: 1;
  padding-top: 1rem;
}

.testimonial-card {
  border: none;
  background-color: var(--bg-light);
  height: 100%;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

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

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

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

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

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

.principle-card {
  border: none;
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.approach-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

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

.disclaimer-box {
  background-color: #fff3cd;
  border: 2px solid #ffc107;
  padding: 2rem;
  border-radius: 8px;
}

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

.disclaimer-list li {
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
}

.disclaimer-list li:before {
  content: "✗";
  position: absolute;
  left: 0;
  color: #d32f2f;
  font-weight: 700;
  font-size: 1.25rem;
}

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

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

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

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

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

.legal-content {
  font-size: 0.95rem;
  line-height: 1.8;
}

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

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

.legal-content h4 {
  color: var(--primary-color);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
}

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

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

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

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

.cookie-table {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.disclaimer-content .alert {
  margin-bottom: 2rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--text-dark);
  color: white;
  padding: 1rem 0;
  z-index: 9999;
  display: none;
}

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

footer {
  margin-top: auto;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

  .step-number {
    width: 60px;
    height: 60px;
    margin-right: 1rem;
  }

  .process-step {
    margin-bottom: 1.5rem;
  }
}
