:root {
  --primary-color: #8b5cf6;
  --primary-dark: #7c3aed;
  --secondary-color: #a78bfa;
  --accent-color: #c4b5fd;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
}

* {
  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-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

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

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

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

.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(124, 58, 237, 0.7));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

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

.section-padding {
  padding: 80px 0;
}

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-img-top {
  height: 250px;
  object-fit: cover;
}

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

.info-box h5 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.info-box-large {
  background-color: var(--bg-white);
  border: 2px solid var(--border-color);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.info-box-large h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.disclaimer-box {
  background-color: var(--bg-light);
  border: 2px solid var(--accent-color);
  padding: 2rem;
  border-radius: 8px;
}

.testimonial-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
}

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

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

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

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

.mission-card {
  background-color: var(--bg-white);
  border: 2px solid var(--border-color);
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  transition: border-color 0.3s ease;
}

.mission-card:hover {
  border-color: var(--primary-color);
}

.mission-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.philosophy-item {
  margin-bottom: 2.5rem;
}

.philosophy-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.role-card {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
  border-left: 4px solid var(--primary-color);
}

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

.contact-info-box {
  margin-bottom: 1.5rem;
}

.contact-info-box h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-form-wrapper {
  background-color: var(--bg-light);
  padding: 2.5rem;
  border-radius: 8px;
}

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.thank-you-icon {
  display: flex;
  justify-content: center;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.policy-section h5 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.policy-section ul {
  margin-left: 1.5rem;
}

.footer-section {
  background-color: #1f2937;
  color: var(--bg-white);
  padding: 60px 0 30px;
}

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

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

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

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

.footer-divider {
  background-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.footer-link-bottom {
  color: var(--text-muted);
  margin-left: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link-bottom:hover {
  color: var(--bg-white);
}

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

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

.cookie-banner-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner-text {
  flex: 1;
  min-width: 300px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-accept {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-cookie-accept:hover {
  background-color: var(--primary-dark);
}

.btn-cookie-decline {
  background-color: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .hero-section {
    height: 500px;
  }

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

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

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

  .cookie-banner-buttons {
    justify-content: center;
  }

  .footer-link-bottom {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 400px;
  }

  .display-4 {
    font-size: 2rem;
  }

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