:root {
  --primary-purple: #5b2c6f;
  --primary-purple-dark: #4a2359;
  --primary-purple-light: #7d3d99;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #6a6a6a;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

* {
  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;
  margin: 0;
  padding: 0;
}

.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-white) !important;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
  font-size: 1rem;
  padding: 0.5rem 1rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--bg-white) !important;
}

.hero-section {
  position: relative;
  min-height: 600px;
  background-image: url("../images/hero-movement.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  margin-top: 56px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(91, 44, 111, 0.85), rgba(74, 35, 89, 0.75));
  display: flex;
  align-items: center;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
  color: var(--bg-white);
  padding: 120px 0 80px;
  margin-top: 56px;
}

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.btn-primary {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.philosophy-card,
.info-box,
.daily-tip,
.facility-item,
.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.philosophy-card:hover,
.info-box:hover,
.daily-tip:hover,
.facility-item:hover {
  border-color: var(--primary-purple);
  box-shadow: 0 4px 12px rgba(91, 44, 111, 0.1);
  transform: translateY(-3px);
}

.philosophy-card h4,
.info-box h5,
.daily-tip h5 {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.content-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.content-list li::before {
  content: "→";
  color: var(--primary-purple);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.stat-card {
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--primary-purple);
  box-shadow: 0 6px 16px rgba(91, 44, 111, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-purple);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.principle-item {
  padding: 1.5rem;
  background: var(--bg-white);
  border-left: 4px solid var(--primary-purple);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.principle-item h5 {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.education-point {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.education-point h5 {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.program-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.program-card:hover {
  border-color: var(--primary-purple);
  box-shadow: 0 8px 20px rgba(91, 44, 111, 0.15);
  transform: translateY(-5px);
}

.program-header {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light));
  color: var(--bg-white);
  padding: 1.5rem;
}

.program-header h4 {
  margin: 0;
  font-weight: 600;
}

.program-body {
  padding: 1.5rem;
}

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

.program-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-medium);
}

.program-features li::before {
  content: "✓";
  color: var(--primary-purple);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.program-duration {
  color: var(--text-medium);
  font-size: 0.95rem;
}

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

.testimonial-text {
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.7;
}

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

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

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

.cta-link {
  color: var(--primary-purple);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-link:hover {
  color: var(--primary-purple-dark);
  text-decoration: none;
  transform: translateX(5px);
}

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

.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

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

.contact-info-card a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(91, 44, 111, 0.15);
}

.thank-you-content {
  background: var(--bg-light);
  border-radius: 12px;
}

.legal-content h2 {
  color: var(--primary-purple);
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 2rem;
}

.legal-content h4 {
  color: var(--primary-purple-dark);
  font-size: 1.25rem;
  font-weight: 600;
}

.legal-content ul {
  margin: 1rem 0;
}

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

.legal-content a {
  color: var(--primary-purple);
  text-decoration: none;
}

.legal-content a:hover {
  color: var(--primary-purple-dark);
  text-decoration: underline;
}

.alert-info {
  background-color: rgba(91, 44, 111, 0.05);
  border-color: var(--primary-purple);
  color: var(--text-dark);
}

.alert-info a {
  color: var(--primary-purple);
  font-weight: 600;
}

.alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-color: #ffc107;
}

.footer {
  margin-top: auto;
}

.footer h5 {
  color: var(--bg-white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer a {
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-purple-light) !important;
}

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

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

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: var(--bg-white);
  text-decoration: underline;
}

.cookie-banner .btn {
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
}

.shadow {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.rounded {
  border-radius: 8px !important;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
    margin-top: 56px;
  }

  .page-header {
    padding: 100px 0 60px;
  }

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

  .display-3 {
    font-size: 2.5rem;
  }

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

  .stat-number {
    font-size: 2.5rem;
  }

  .cookie-banner .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .cookie-banner .text-md-right {
    text-align: left !important;
  }
}

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

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