:root {
  --primary-yellow: #f5c94c;
  --primary-yellow-dark: #e0b43a;
  --primary-yellow-light: #fdf6e3;
  --neutral-white: #ffffff;
  --neutral-light: #fafafa;
  --neutral-gray: #f5f5f5;
  --text-dark: #2d2d2d;
  --text-medium: #5a5a5a;
  --text-light: #888888;
  --border-color: #e8e8e8;
}

* {
  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;
  background-color: var(--neutral-white);
}

.navbar {
  background-color: var(--neutral-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

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

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

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

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-yellow-light) 0%, var(--neutral-white) 100%);
}

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

.hero-section .lead {
  font-size: 1.25rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.hero-image {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--primary-yellow);
  border-color: var(--primary-yellow);
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-yellow-dark);
  border-color: var(--primary-yellow-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 201, 76, 0.4);
}

.btn-outline-primary {
  border-color: var(--primary-yellow);
  color: var(--text-dark);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.btn-outline-secondary {
  border-color: var(--border-color);
  color: var(--text-medium);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
}

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

.content-section {
  padding: 5rem 0;
}

.content-section.bg-light {
  background-color: var(--neutral-gray);
}

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

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

.content-card {
  background: var(--neutral-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.content-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.content-card .card-body {
  padding: 1.5rem;
}

.content-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.content-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

.content-text {
  padding: 2rem 0;
}

.content-text h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.content-text p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

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

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
}

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

.info-box {
  background: var(--primary-yellow-light);
  border-left: 4px solid var(--primary-yellow);
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
  margin: 2rem 0;
}

.info-box h4,
.info-box h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.info-box p {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.accordion .card {
  border: none;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion .card-header {
  background: var(--neutral-white);
  border: none;
  padding: 0;
}

.accordion .btn-link {
  width: 100%;
  text-align: left;
  padding: 1.25rem;
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
}

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

.accordion .card-body {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-medium);
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-yellow-light) 0%, var(--neutral-white) 100%);
}

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

.cta-section .lead {
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.footer {
  background-color: var(--text-dark);
  color: var(--neutral-white);
  padding: 4rem 0 2rem;
}

.footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--neutral-white);
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

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

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

.footer-bottom .disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
}

.page-header {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-yellow-light) 0%, var(--neutral-white) 100%);
  text-align: center;
}

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

.page-header .lead {
  color: var(--text-medium);
  font-size: 1.2rem;
}

.mission-content,
.transparency-content {
  font-size: 1.05rem;
}

.mission-content p,
.transparency-content p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.approach-card {
  background: var(--neutral-white);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

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

.approach-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--primary-yellow-dark);
}

.approach-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.approach-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.highlight-box {
  background: var(--neutral-gray);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.highlight-box h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.highlight-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-box li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-medium);
}

.highlight-box li::before {
  content: "✓";
  color: var(--primary-yellow-dark);
  position: absolute;
  left: 0;
}

.contact-info {
  background: var(--neutral-gray);
  padding: 2rem;
  border-radius: 16px;
  height: 100%;
}

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

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

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

.contact-form-wrapper {
  background: var(--neutral-white);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

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

.contact-form .form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-yellow);
  box-shadow: 0 0 0 3px rgba(245, 201, 76, 0.2);
}

.contact-form .form-check-label {
  font-size: 0.9rem;
  color: var(--text-medium);
}

.contact-form .form-check-label a {
  color: var(--primary-yellow-dark);
}

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

.thank-you-content {
  background: var(--neutral-white);
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

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

.thank-you-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.thank-you-content .lead {
  color: var(--text-medium);
  font-size: 1.2rem;
}

.thank-you-content p {
  color: var(--text-medium);
}

.legal-content {
  background: var(--neutral-white);
  padding: 2rem;
  border-radius: 16px;
}

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

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

.legal-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.legal-content p {
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.legal-content ul {
  color: var(--text-medium);
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content .last-updated {
  font-style: italic;
  color: var(--text-light);
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.disclaimer-box {
  background: var(--primary-yellow-light);
  border: 2px solid var(--primary-yellow);
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
}

.disclaimer-box h2 {
  margin-top: 0 !important;
  color: var(--text-dark);
}

.disclaimer-box p {
  margin-bottom: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--neutral-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
  color: var(--text-medium);
  font-size: 0.95rem;
}

.cookie-content a {
  color: var(--primary-yellow-dark);
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
}

.rounded-lg {
  border-radius: 16px;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 3rem 0;
  }

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

  .hero-section .col-lg-6:last-child {
    margin-top: 2rem;
  }

  .content-section {
    padding: 3rem 0;
  }

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

@media (max-width: 767px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }

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

  .content-card img {
    height: 180px;
  }

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

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

  .thank-you-content {
    padding: 2rem;
  }

  .legal-content {
    padding: 1.5rem;
  }
}
