:root {
  --primary-color: #f4c430;
  --primary-dark: #d4a520;
  --secondary-color: #2c3e50;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --success: #28a745;
  --border-color: #dee2e6;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

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

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

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-dark);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

.hero-section h1 {
  color: var(--text-dark);
}

.hero-section .lead {
  color: var(--text-light);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color);
}

.feature-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
}

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

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

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.text-primary {
  color: var(--primary-dark) !important;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
}

.cta-section .lead {
  color: var(--white);
}

.cta-section .btn-primary {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary-dark);
}

.cta-section .btn-primary:hover {
  background-color: var(--bg-light);
  border-color: var(--bg-light);
}

.footer {
  background-color: var(--secondary-color);
}

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

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

.page-header {
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.cert-box,
.feature-box,
.approach-box,
.benefit-box {
  padding: 1.5rem;
  height: 100%;
}

.rating {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.story-content {
  padding: 1rem;
}

.topic-card {
  background-color: var(--white);
  transition: all 0.3s ease;
}

.topic-card:hover {
  background-color: var(--bg-light);
  transform: translateX(5px);
}

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

.guidelines-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.workshop-item {
  transition: all 0.3s ease;
}

.workshop-item:hover {
  transform: translateX(5px);
}

.sport-card {
  background-color: var(--white);
  transition: all 0.3s ease;
}

.sport-card:hover {
  background-color: var(--bg-light);
  transform: translateY(-5px);
}

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

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

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

.contact-info h5 {
  color: var(--primary-dark);
}

.faq-item h6 {
  color: var(--text-dark);
  font-weight: 600;
}

.thank-you-content {
  background-color: var(--white);
  border-radius: 10px;
}

.success-icon {
  display: inline-block;
}

.step-box {
  background-color: var(--white);
  transition: all 0.3s ease;
}

.step-box:hover {
  background-color: var(--bg-light);
  transform: translateY(-5px);
}

.policy-section h2 {
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.policy-section h3 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

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

.policy-section p {
  margin-bottom: 1rem;
}

#bmiResult {
  font-size: 1.1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .service-icon,
  .feature-icon {
    font-size: 2.5rem;
  }

  .btn-lg {
    padding: 0.5rem 1.5rem;
  }
}
