:root {
  --primary-color: #f7b731;
  --primary-dark: #e89f1c;
  --secondary-color: #2c3e50;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --bg-white: #ffffff;
  --bg-gray: #f8f9fa;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

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

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

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

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

.brand-logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

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

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

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

.section-white {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.section-gray {
  padding: 80px 0;
  background-color: var(--bg-gray);
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
  max-width: 800px;
}

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

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

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
}

.feature-box {
  padding: 2rem;
  height: 100%;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

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

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

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

.feature-text {
  color: var(--text-light);
  line-height: 1.6;
}

.benefit-list {
  padding: 0;
}

.benefit-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
}

.benefit-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.benefit-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-detail {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

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

.service-detail-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-detail-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-detail-list {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.service-detail-list li {
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

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

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: 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-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

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

.audience-box {
  padding: 2.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.audience-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 0.75rem;
}

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

.audience-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

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

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

.testimonial-rating {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
}

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

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

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

.value-box {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

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

.value-box p {
  color: var(--text-light);
  line-height: 1.6;
}

.lead-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

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

.approach-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  color: var(--text-light);
}

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

.contact-info-box {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-gray);
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.contact-info-text {
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.7;
}

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

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

.faq-box {
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.faq-answer {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(247, 183, 49, 0.25);
}

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

.form-check-label {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.form-check-label a:hover {
  text-decoration: underline;
}

.thankyou-section {
  padding: 100px 0;
  background: var(--bg-gray);
}

.thankyou-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 2rem;
}

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

.thankyou-text {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.thankyou-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.thankyou-info {
  margin: 3rem 0;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.thankyou-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.thankyou-steps {
  text-align: left;
  display: inline-block;
  margin: 0;
}

.thankyou-steps li {
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.thankyou-actions {
  margin-bottom: 3rem;
}

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

.thankyou-contact p {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

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

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

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

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

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.legal-content p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  color: var(--text-light);
}

.legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content ul li {
  margin-bottom: 0.75rem;
  color: var(--text-light);
  line-height: 1.6;
}

.disclaimer-highlight {
  padding: 1.5rem;
  background: #fff3cd;
  border-left: 4px solid var(--primary-color);
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 4px;
}

.cookie-table {
  width: 100%;
  margin: 2rem 0;
  border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
  background-color: var(--bg-gray);
  font-weight: 700;
  color: var(--text-dark);
}

.cookie-table td {
  color: var(--text-light);
}

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

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

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

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

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 62, 80, 0.98);
  color: white;
  padding: 1.5rem 0;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
}

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

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

.cookie-text {
  flex: 1;
  margin-right: 2rem;
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-light {
  background-color: white;
  color: var(--text-dark);
}

.btn-light:hover {
  background-color: var(--bg-gray);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-light {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--text-dark);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

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

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

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

  .page-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }

  .hero-section {
    padding: 60px 0;
  }

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

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

  .section-white,
  .section-gray {
    padding: 60px 0;
  }

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

  .page-header {
    padding: 100px 0 40px;
  }

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

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

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

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

  .cta-text {
    font-size: 1.1rem;
  }

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

  .cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

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

  .thankyou-text {
    font-size: 1.1rem;
  }
}

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

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

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

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