:root {
  --primary-color: #ffd700;
  --primary-dark: #ffc700;
  --secondary-color: #2c3e50;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
  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;
  background-color: var(--white);
}

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

.navbar {
  padding: 1rem 0;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

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

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

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-outline-secondary {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--text-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);
}

.feature-box {
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.feature-box p {
  color: var(--text-light);
}

.bmi-calculator {
  background-color: var(--bg-light);
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.service-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

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

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

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

.cta h2 {
  font-weight: 700;
}

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

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

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

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

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

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

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

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

.team-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.team-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin: 0 auto;
}

.team-role {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.value-card,
.cert-badge,
.benefit-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
}

.cert-icon,
.benefit-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

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

.pricing-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 3px solid var(--primary-color);
}

.badge-popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 1.5rem 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

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

.pricing-features li:last-child {
  border-bottom: none;
}

.story-content {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.story-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.story-highlight {
  background-color: var(--bg-light);
  padding: 1rem;
  border-left: 4px solid var(--primary-color);
  margin-top: 1.5rem;
}

.workshop-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  position: relative;
}

.workshop-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.workshop-date {
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

.workshop-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 1rem 0;
}

.series-card {
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.series-duration {
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.series-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 1.5rem 0;
}

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.faq-item h4 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

.contact-item h5 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-item a {
  color: var(--primary-dark);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.monitoring-card,
.resource-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
}

.monitoring-card h3,
.resource-card h4 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.thank-you-info {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

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

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

.contact-reminder {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

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

.policy-section h2 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

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

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

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

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

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

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

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

  .ml-2 {
    margin-left: 0 !important;
    margin-top: 0.5rem;
  }
}
