:root {
  --primary-color: #7c3aed;
  --primary-dark: #6d28d9;
  --secondary-color: #a78bfa;
  --accent-color: #c4b5fd;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --white: #ffffff;
  --border-color: #e5e7eb;
}

* {
  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;
  padding-top: 76px;
}

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

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

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

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

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

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

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

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

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

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

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

.page-header {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

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

.calculator-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-card,
.feature-card,
.testimonial-card,
.workshop-card,
.sports-card,
.value-card,
.team-card,
.cert-card,
.story-card,
.topic-card,
.next-step-card,
.benefit-card,
.topic-card-sports,
.faq-item,
.contact-info,
.guidelines-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover,
.workshop-card:hover,
.sports-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

.testimonial-card {
  border-left: 4px solid var(--primary-color);
}

.testimonial-author {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

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

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

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

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

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

.footer {
  background-color: var(--text-dark);
  color: var(--white);
}

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

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

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

.workshop-date {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.workshop-topics {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.workshop-topics li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.workshop-topics li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1;
}

.topic-tag {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}

.process-step {
  text-align: center;
}

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

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.15);
}

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

.contact-item h5 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.thank-you-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #10b981;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}

.thank-you-actions {
  margin-top: 2rem;
}

.thank-you-actions .btn {
  margin: 0.5rem;
}

.policy-section {
  margin-bottom: 3rem;
}

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

.policy-section h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

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

.policy-section li {
  margin-bottom: 0.75rem;
}

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

.cert-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

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

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

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

  .hero {
    padding: 40px 0;
  }

  body {
    padding-top: 66px;
  }
}

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

.rounded {
  border-radius: 12px;
}

.rounded-circle {
  border-radius: 50%;
}
