:root {
  --primary-yellow: #ffc107;
  --primary-dark: #2c3e50;
  --text-dark: #1a1a1a;
  --text-gray: #5a5a5a;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

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

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.navbar-brand:hover .brand-logo {
  color: var(--primary-yellow);
}

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

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

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

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

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

.section {
  padding: 60px 0;
}

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

.card {
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-title {
  color: var(--primary-dark);
  font-weight: 600;
}

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

.btn-primary:hover {
  background-color: #ffb300;
  border-color: #ffb300;
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

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

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

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

.principle-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.principle-card h4 {
  color: var(--primary-dark);
  margin-bottom: 15px;
}

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

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

.accordion .card-header {
  background-color: var(--bg-light);
  border: none;
}

.accordion .btn-link {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
  width: 100%;
  text-align: left;
}

.accordion .btn-link:hover {
  color: var(--primary-yellow);
}

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

.page-header {
  background: linear-gradient(135deg, #fff9e6 0%, var(--bg-light) 100%);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-control:focus {
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

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

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  color: var(--primary-dark);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.75rem;
}

.legal-content h3 {
  color: var(--primary-dark);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

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

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

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

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

.footer-links {
  list-style: none;
  padding: 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-yellow);
}

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

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

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

.cookie-banner.hidden {
  display: none;
}

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

.cookie-banner .btn-outline-light {
  border-color: var(--white);
  color: var(--white);
}

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

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

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

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

  .hero {
    padding: 50px 0;
  }

  .section {
    padding: 40px 0;
  }

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