:root {
  --primary-color: #ff7f3e;
  --primary-dark: #e66d2e;
  --secondary-color: #2c3e50;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-gray: #f8f9fa;
  --border-color: #dee2e6;
  --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;
}

.header-main {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.page-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

h2 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-light);
}

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

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

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

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

.card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.info-box {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.info-box h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.step-box {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 8px;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

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

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

.topic-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-top: 3px solid var(--primary-color);
}

.testimonial-author {
  color: var(--text-light);
  font-style: italic;
  margin-top: 15px;
}

.faq-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

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

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

.mission-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  height: 100%;
  border-left: 4px solid var(--primary-color);
}

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

.principle-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.principle-item:last-child {
  border-bottom: none;
}

.principle-item h5 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.educational-list {
  line-height: 2;
}

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

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

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

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

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

.legal-page {
  padding: 60px 0;
}

.legal-section {
  margin-bottom: 40px;
}

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

.legal-section h4 {
  color: var(--secondary-color);
  font-size: 1.25rem;
  margin-top: 20px;
  margin-bottom: 15px;
}

.legal-section ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

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

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

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

.cookie-banner p {
  margin: 0;
  color: var(--white);
}

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

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

  .hero-section {
    height: 400px;
  }

  .page-hero {
    height: 300px;
  }

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

  .cookie-banner .text-right {
    text-align: left;
    margin-top: 15px;
  }
}
