:root {
  --primary-color: #dc3545;
  --primary-dark: #c82333;
  --secondary-color: #6c757d;
  --text-dark: #212529;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #dee2e6;
  --success-color: #28a745;
}

* {
  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;
}

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

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

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

.brand-name {
  color: var(--text-dark);
}

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

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

.nav-link.btn-primary {
  color: var(--bg-white);
  background-color: var(--primary-color);
  border-radius: 4px;
}

.nav-link.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--bg-white);
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

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

.section {
  padding: 60px 0;
}

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

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

.info-card {
  height: 100%;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.benefit-item {
  margin-bottom: 2rem;
}

.benefit-item h3 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.approach-step {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 8px;
  height: 100%;
}

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

.approach-step h3 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-benefit {
  padding: 1.5rem;
  background: var(--bg-white);
  border-left: 4px solid var(--primary-color);
  margin-bottom: 1rem;
  border-radius: 4px;
}

.service-benefit h3 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

.concern-item {
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 8px;
  height: 100%;
}

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

.feature-box {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-box h3 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.cta-section {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 80px 0;
  text-align: center;
}

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

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

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

.cta-section .btn-primary:hover {
  background-color: var(--bg-light);
  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 ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.page-header {
  background-color: var(--bg-light);
  padding: 60px 0 40px;
  text-align: center;
}

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

.value-card {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

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

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

.belief-item {
  margin-bottom: 2rem;
}

.belief-item h3 {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.approach-detail {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
}

.approach-detail h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.contact-info-box h3 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.service-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

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

.service-note {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 4px;
  margin-top: 1.5rem;
  font-style: italic;
}

.additional-service {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  height: 100%;
}

.additional-service h3 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

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

.expectation-item h3 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

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

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

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

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

.contact-detail h3 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.contact-detail a {
  color: var(--text-dark);
}

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

.faq-item {
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}

.faq-item h3 {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

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

.thank-you-title {
  color: var(--primary-color);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.thank-you-list {
  list-style: none;
  padding-left: 0;
}

.thank-you-list li {
  padding: 0.5rem 0;
}

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

.policy-content {
  background: var(--bg-white);
  padding: 3rem;
  border-radius: 8px;
}

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

.policy-content h3 {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content h4 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

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

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

.disclaimer-highlight {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

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

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

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

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

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

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

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

.cookie-option {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.cookie-option input[type="checkbox"] {
  margin-top: 0.25rem;
}

.cookie-option label {
  flex: 1;
}

.cookie-customize-buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
}

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

.footer-heading {
  color: var(--bg-white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

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

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

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

.footer-contact a {
  color: var(--bg-light);
  text-decoration: none;
}

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

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

.footer-bottom p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: var(--bg-light);
  font-style: italic;
}

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

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

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

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

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

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

  .section {
    padding: 40px 0;
  }

  .cta-section {
    padding: 40px 0;
  }

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

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

  .policy-content {
    padding: 1.5rem;
  }

  .thank-you-title {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .cookie-customize {
    padding: 1.5rem;
  }
}
