:root {
  --primary-color: #2c3e50;
  --secondary-color: #ffd93d;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --text-white: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #2c3e50;
  --bg-white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

.brand-logo {
  color: var(--primary-color);
  font-size: 28px;
  letter-spacing: -0.5px;
}

.navbar {
  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(--secondary-color);
}

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

.page-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
  color: var(--text-white);
}

.page-hero-small {
  padding: 60px 0 40px;
  background: var(--bg-light);
}

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

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

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

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

.section-dark .section-title {
  color: var(--text-white);
}

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

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

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

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

.btn-outline-primary {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

.feature-number {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: var(--text-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

.principle-card:hover,
.audience-card:hover {
  transform: translateY(-5px);
}

.audience-card {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

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

.custom-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}

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

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

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

.faq-item {
  background: var(--bg-white);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

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

.contact-info-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-form-wrapper {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-control:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 217, 61, 0.25);
}

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

.thank-you-content {
  background: var(--bg-light);
  padding: 60px;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: var(--secondary-color);
  color: var(--text-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
}

.policy-content {
  font-size: 16px;
  line-height: 1.8;
}

.policy-content h2 {
  color: var(--primary-color);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-content h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 15px;
}

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

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

.disclaimer-box {
  background: #fff3cd;
  border-left: 5px solid var(--secondary-color);
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 5px;
}

.why-choose-item {
  background: var(--bg-white);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid var(--secondary-color);
}

.why-choose-item h5 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
}

.footer {
  padding: 60px 0 20px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

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

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

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

  .section-light,
  .section-dark,
  .section-white {
    padding: 50px 0;
  }

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

  .thank-you-content {
    padding: 40px 20px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.75rem;
  }

  .lead {
    font-size: 1rem;
  }
}
