:root {
  --primary-color: #7c3aed;
  --primary-hover: #6d28d9;
  --secondary-color: #f8f9fa;
  --text-color: #2d3748;
  --text-muted: #718096;
  --border-color: #e2e8f0;
  --success-color: #10b981;
}

* {
  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-color);
  line-height: 1.6;
  padding-top: 76px;
}

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

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

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.principle-card,
.testimonial-card,
.faq-card {
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.principle-icon {
  font-size: 3rem;
}

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

.benefits-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.benefits-list li:last-child {
  border-bottom: none;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.audience-item {
  padding: 24px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.audience-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

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

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

.faq-card .btn-link {
  width: 100%;
  text-align: left;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 600;
  padding: 16px 20px;
}

.faq-card .btn-link:hover {
  color: var(--primary-color);
}

.bg-primary {
  background-color: var(--primary-color);
}

.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: white;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.about-principle-card {
  background: white;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.about-principle-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

.about-cta-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  margin-top: 48px;
}

.contact-info-box {
  background: var(--secondary-color);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

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

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--success-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto;
}

.policy-content h2 {
  color: var(--text-color);
  margin-top: 32px;
  margin-bottom: 16px;
}

.policy-content h3,
.policy-content h4 {
  color: var(--text-color);
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.footer {
  margin-top: 80px;
}

.footer h5 {
  font-weight: 700;
  margin-bottom: 16px;
}

.footer a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 0.8;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: white;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

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

.cookie-consent a {
  color: white;
}

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

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

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

  .cookie-consent .text-right {
    text-align: left;
    margin-top: 16px;
  }
}
