:root {
  --primary-color: #ff8c42;
  --dark-bg: #2c3e50;
  --light-bg: #f8f9fa;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --white: #ffffff;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
}

.navbar {
  box-shadow: var(--shadow);
  padding: 1rem 0;
  background-color: var(--white) !important;
  margin-top: 0;
}

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

.brand-logo {
  background: linear-gradient(135deg, var(--primary-color), #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

body {
  padding-top: 60px;
}

.hero-section {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #34495e 100%);
  color: var(--white);
  padding: 80px 0;
  margin-top: 0;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ecf0f1;
  line-height: 1.6;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.page-header {
  background: linear-gradient(135deg, var(--dark-bg), #34495e);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
}

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

.why-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

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

.why-list li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-dark);
  line-height: 1.6;
}

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

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

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-color);
}

.stars {
  color: var(--primary-color);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-style: italic;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), #ff6b35);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.services-grid {
  padding: 80px 0;
  background-color: var(--white);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--text-dark);
}

.service-card p {
  padding: 0 1.5rem 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0 1.5rem 1.5rem;
}

.service-features li {
  padding: 0.3rem 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.service-features li:before {
  content: "• ";
  color: var(--primary-color);
  font-weight: 700;
  margin-right: 0.5rem;
}

.class-schedule {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.schedule-table thead {
  background: var(--dark-bg);
  color: var(--white);
}

.schedule-table th {
  padding: 1.5rem;
  text-align: center;
  font-weight: 600;
}

.schedule-table td {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

.schedule-table tbody tr:last-child td {
  border-bottom: none;
}

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

.contact-info {
  margin-bottom: 2rem;
}

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

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

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

.contact-form .form-control {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 0.75rem;
  color: var(--text-dark);
}

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

.contact-form .form-check-label {
  color: var(--text-dark);
}

.contact-form .form-check-label a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-form .form-check-label a:hover {
  text-decoration: underline;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  font-weight: 600;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #ff6b35;
  border-color: #ff6b35;
  color: var(--white);
}

.btn-secondary {
  background-color: var(--dark-bg);
  border-color: var(--dark-bg);
  color: var(--white);
  font-weight: 600;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #1a252f;
  border-color: #1a252f;
  color: var(--white);
}

.btn-outline-secondary {
  border: 2px solid var(--dark-bg);
  color: var(--dark-bg);
  font-weight: 600;
}

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

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
}

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

.info-block {
  margin-bottom: 2rem;
}

.info-block h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.info-block p {
  color: var(--text-dark);
  line-height: 1.6;
}

.info-block a {
  color: var(--primary-color);
  text-decoration: none;
}

.info-block a:hover {
  text-decoration: underline;
}

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

.about-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.about-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.about-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary-color);
  text-align: center;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-light);
  line-height: 1.6;
}

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

.instructor-card {
  background: var(--white);
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

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

.instructor-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--text-dark);
}

.instructor-card p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.6;
}

.cta-services {
  background: linear-gradient(135deg, var(--primary-color), #ff6b35);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
  margin-top: 60px;
}

.cta-services h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.policy-section {
  padding: 60px 0;
}

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

.policy-section p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.policy-section li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.thank-you-section {
  padding: 120px 0;
  text-align: center;
}

.thank-you-content {
  background: var(--light-bg);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.thank-you-icon {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.thank-you-content .lead {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.thank-you-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thank-you-actions .btn {
  padding: 0.75rem 2rem;
}

.footer {
  background: var(--dark-bg);
  color: var(--white);
  padding: 60px 0 0;
  margin-top: 60px;
}

.footer-section {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #bdc3c7;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

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

.footer-links li {
  padding: 0.3rem 0;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.contact-info a {
  color: #bdc3c7;
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  padding: 2rem 0;
  text-align: center;
}

.footer-legal {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.9rem;
}

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

.copyright {
  color: #95a5a6;
  font-size: 0.9rem;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-bg);
  color: var(--white);
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

.cookie-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cookie-content p {
  margin-bottom: 0;
  color: #bdc3c7;
  font-size: 0.9rem;
}

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

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

.cookie-banner .btn-sm {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
}

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

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

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

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

  .navbar-brand {
    font-size: 1.2rem;
  }

  body {
    padding-top: 60px;
  }

  .hero-section {
    padding: 40px 0;
  }

  .benefits-section,
  .why-section,
  .testimonials-section,
  .services-grid,
  .class-schedule,
  .about-section,
  .values-section,
  .instructors-section {
    padding: 40px 0;
  }

  .cta-section,
  .cta-services {
    padding: 40px 0;
  }

  .contact-section {
    padding: 40px 0;
  }

  .thank-you-section {
    padding: 60px 0;
  }

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

  .policy-section {
    padding: 40px 0;
  }

  .hero-section .row {
    flex-direction: column;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }

  .footer-section {
    text-align: center;
    padding: 1.5rem 0;
  }

  .footer-legal {
    gap: 1rem;
  }

  .schedule-table {
    font-size: 0.85rem;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 1rem 0.5rem;
  }

  .contact-form-wrapper {
    margin-top: 2rem;
  }
}

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

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

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

  .btn-lg {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}
