:root {
  --primary-color: #f9c74f;
  --primary-dark: #f8b91f;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  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;
  padding-top: 70px;
}

.navbar {
  transition: all 0.3s ease;
}

.brand-name {
  font-size: 1.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

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

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff 0%, var(--bg-light) 100%);
}

.hero-section h1 {
  color: var(--text-dark);
  font-weight: 700;
}

.hero-section .lead {
  color: var(--text-muted);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-dark);
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.section {
  padding: 80px 0;
}

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

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow);
}

.icon-box {
  font-size: 3rem;
  color: var(--primary-color);
}

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

.benefits-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

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

.feature-box {
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow);
  height: 100%;
}

.feature-box h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card {
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.service-card img {
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-card h4 {
  font-weight: 600;
  margin-bottom: 15px;
}

.audience-box {
  padding: 25px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow);
  height: 100%;
}

.audience-box h5 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.testimonial-card {
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow);
  height: 100%;
}

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

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

.faq-item {
  padding: 25px;
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px var(--shadow);
}

.faq-item h5 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

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

.cta-section h2 {
  font-weight: 700;
}

.cta-section .btn-light {
  background-color: var(--white);
  color: var(--text-dark);
  font-weight: 600;
  padding: 12px 30px;
  transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

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

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

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

.footer-link {
  color: var(--white);
  text-decoration: none;
  margin-left: 15px;
  transition: color 0.3s ease;
}

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

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

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

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

.cookie-banner .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.cookie-banner .btn-secondary {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

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

.page-header h1 {
  font-weight: 700;
}

.value-card {
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow);
  height: 100%;
}

.value-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

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

.approach-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

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

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

.commitment-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

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

.service-detail {
  margin-bottom: 60px;
}

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

.service-features li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

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

.process-step {
  padding: 30px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow);
  height: 100%;
}

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

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow);
}

.contact-form .form-control {
  border: 2px solid #e0e0e0;
  padding: 12px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.contact-info-box {
  padding: 20px;
  background: var(--bg-light);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.contact-info-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

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

.contact-benefits li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

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

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

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

.thank-you-info {
  border-left: 4px solid var(--primary-color);
}

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

.thank-you-info li {
  padding: 8px 0;
}

.legal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--shadow);
}

.legal-content h3 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.legal-content ul {
  margin-bottom: 20px;
}

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

.legal-content a:hover {
  color: var(--primary-dark);
}

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

  .section {
    padding: 50px 0;
  }

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

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

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

  .legal-content {
    padding: 20px;
  }

  .footer-link {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
}

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

  .brand-name {
    font-size: 1.2rem;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

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

  .cookie-banner .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
