:root {
  --primary-color: #0066cc;
  --primary-dark: #0052a3;
  --secondary-color: #e8f4fd;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --background-light: #f8f9fa;
  --border-color: #dee2e6;
  --white: #ffffff;
  --success-color: #28a745;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica", "Arial", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

.header {
  background: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
}

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

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

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.card-text {
  color: var(--text-light);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 12px 30px;
  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;
}

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

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

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

.benefits-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  font-size: 18px;
  color: var(--text-dark);
}

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

.service-card .card-img-top {
  height: 240px;
  object-fit: cover;
}

.benefit-box {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.benefit-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-size: 16px;
}

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

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

.cta-text {
  font-size: 20px;
  margin-bottom: 30px;
}

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
}

.footer p {
  color: #ccc;
  margin-bottom: 10px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-bottom {
  color: #999;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

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

.page-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 20px;
  opacity: 0.9;
}

.value-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.value-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

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

.approach-list li {
  padding: 10px 0;
  font-size: 17px;
}

.contact-info-box {
  background: var(--background-light);
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.contact-info-box h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-detail-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.service-detail h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 20px;
  margin-bottom: 15px;
}

.process-step {
  text-align: center;
  padding: 20px;
}

.step-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: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.process-step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.contact-form .form-control {
  border: 1px solid var(--border-color);
  padding: 12px;
  font-size: 16px;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.contact-info-card {
  background: var(--background-light);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.contact-info-item {
  margin-bottom: 20px;
}

.contact-info-item strong {
  display: block;
  color: var(--primary-color);
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-hours {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.contact-hours h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.faq-item {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

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

.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: 60px;
  margin: 0 auto 30px;
}

.thank-you-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.thank-you-text {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.thank-you-box {
  background: var(--background-light);
  padding: 40px;
  border-radius: 8px;
  margin: 40px 0;
  text-align: left;
}

.thank-you-box h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.next-steps {
  padding-left: 20px;
}

.next-steps li {
  margin-bottom: 15px;
  font-size: 17px;
  color: var(--text-dark);
}

.thank-you-actions {
  margin: 40px 0;
}

.thank-you-actions .btn {
  margin: 0 10px 10px;
}

.thank-you-contact {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

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

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

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

.policy-content h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.policy-content ul {
  margin-bottom: 20px;
  padding-left: 30px;
}

.policy-content ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

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

.disclaimer-content .alert {
  margin-bottom: 30px;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
}

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

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

.cookie-content p {
  margin: 0 20px 0 0;
  flex: 1;
}

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

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons .btn {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 18px;
  }

  .section-title {
    font-size: 28px;
  }

  .page-title {
    font-size: 32px;
  }

  .page-subtitle {
    font-size: 18px;
  }

  .service-detail-title {
    font-size: 24px;
  }

  .thank-you-title {
    font-size: 28px;
  }

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

  .cookie-content p {
    margin: 0 0 15px 0;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
