/* General Styles */
:root {
    --color-dark-green: #0a3d0a;
    --color-medium-green: #145214;
    --color-light-green: #e9f5e9;
    --color-white: #ffffff;
    --color-gray: #d3d3d3;
    --color-dark-text: #333333;
    --color-light-text: #f0f0f0;
    --font-family: 'Poppins', sans-serif;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-family);
    color: var(--color-dark-text);
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Gradients */
  .gradient-bg {
    background: linear-gradient(135deg, var(--color-medium-green), var(--color-dark-green));
    color: var(--color-light-text);
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--color-dark-text);
  }
  
  .section-title.white-text {
    color: var(--color-white);
  }
  
  /* Header */
  .header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .nav {
    padding: 1rem 0;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-dark-green);
  }
  
  .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  .nav-menu li a {
    text-decoration: none;
    color: var(--color-dark-text);
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-menu li a:hover {
    color: var(--color-medium-green);
  }
  
  .nav-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
  }
  
  .nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-dark-text);
  }
  
  /* Hero Section */
  .hero {
    background: var(--color-light-green);
    padding: 6rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
  }
  
  .hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .hero-content {
    flex: 1;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-dark-green);
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
  }
  
  .hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
  }
  
  .hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
  }
  
  .hero-visual img:hover {
    transform: translateY(-5px);
  }
  
  .cta-button {
    background: var(--color-medium-green);
    color: var(--color-white);
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
  }
  
  .cta-button:hover {
    background: var(--color-dark-green);
    transform: translateY(-2px);
  }
  
  /* About Section */
  .about {
    padding: 80px 0;
    background-color: var(--color-white);
  }
  
  .about-content {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  
  .about-text {
    flex: 1;
  }
  
  .about-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-dark-green);
  }
  
  .about-text p {
    margin-bottom: 15px;
    color: var(--color-dark-text);
  }
  
  .about-image {
    flex: 1;
  }
  
  .about-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .about-visual img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .about-coaching-image {
    display: none;
  }
  
  /* Why Choose Us Section */
  .why-choose {
    padding: 80px 0;
    background-color: var(--color-light-green);
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .feature-card {
    text-align: center;
    background-color: var(--color-white);
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
  
  .feature-icon {
    margin-bottom: 20px;
  }
  
  .icon-circle {
    font-size: 2rem;
    width: 70px;
    height: 70px;
    background: var(--color-light-green);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  
  .feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark-green);
  }
  
  .feature-card p {
    color: #666;
  }
  
  /* Program Section */
  .program {
    padding: 80px 0;
    background: linear-gradient(to right, var(--color-dark-green), var(--color-medium-green));
  }
  
  .program .section-title {
    color: var(--color-white);
  }
  
  .program-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .module-card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .module-card h3 {
    color: var(--color-dark-green);
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .module-card p {
    color: var(--color-dark-text);
  }
  
  /* Pricing Section */
  .pricing {
    padding: 80px 0;
    background-color: var(--color-white);
  }
  
  .pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
  }
  
  .pricing-card {
    background-color: var(--color-light-green);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .pricing-card.featured {
    background: linear-gradient(135deg, var(--color-medium-green), var(--color-dark-green));
    color: var(--color-white);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-card.featured .pricing-header h3,
  .pricing-card.featured .price,
  .pricing-card.featured .pricing-features li {
    color: var(--color-white);
  }
  
  .pricing-card.featured .pricing-description {
    color: var(--color-light-text);
  }
  
  .pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-dark-green);
  }
  
  .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-medium-green);
    margin-bottom: 20px;
  }
  
  .pricing-description {
    font-style: italic;
    margin-bottom: 25px;
  }
  
  .pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
  }
  
  .pricing-features li {
    margin-bottom: 10px;
    color: #555;
  }
  
  .pricing-button {
    background-color: var(--color-dark-green);
    color: var(--color-white);
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .pricing-card.featured .pricing-button {
    background-color: var(--color-white);
    color: var(--color-dark-green);
  }
  
  .pricing-button:hover {
    background-color: var(--color-medium-green);
  }
  
  .pricing-card.featured .pricing-button:hover {
    background-color: var(--color-gray);
    color: var(--color-dark-green);
  }
  
  /* Unique Section */
  .unique {
    padding: 80px 0;
    background-color: var(--color-white);
  }
  
  .unique-content {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  
  .unique-text {
    flex: 1;
  }
  
  .unique-text h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-dark-green);
  }
  
  .unique-text p {
    margin-bottom: 15px;
    color: var(--color-dark-text);
  }
  
  .unique-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .unique-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 80px 0;
    background-color: var(--color-light-green);
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .testimonial-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  
  .testimonial-card .stars {
    color: #ffc107;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-medium-green);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
  }
  
  .testimonial-author span {
    font-weight: 600;
    color: var(--color-dark-text);
  }
  
  /* Contact Section */
  .contact {
    padding: 80px 0;
    background: var(--color-white);
  }
  
  .contact-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }
  
  .contact-info {
    flex: 1;
  }
  
  .contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-dark-green);
    margin-bottom: 20px;
  }
  
  .contact-info p {
    margin-bottom: 20px;
    color: #555;
  }
  
  .contact-email {
    font-size: 1.1rem;
    color: var(--color-dark-green);
  }
  
  .contact-form-container {
    flex: 1;
  }
  
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--color-gray);
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: var(--color-medium-green);
  }
  
  .submit-button {
    width: 100%;
    background: var(--color-dark-green);
    color: var(--color-white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .submit-button:hover {
    background: var(--color-medium-green);
  }
  
  .error-message {
    color: red;
    font-size: 0.8rem;
    display: none;
  }
  
  /* Blog Section */
  .blog {
    padding: 80px 0;
    background-color: var(--color-light-green);
  }
  
  .blog .section-title {
    color: var(--color-dark-green);
  }
  
  .blog-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .blog-card {
    background-color: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }
  
  .blog-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
  }
  
  .blog-date {
    margin-right: 15px;
  }
  
  .blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark-green);
    margin-bottom: 10px;
  }
  
  .blog-excerpt {
    color: #555;
  }
  
  /* Footer */
  .footer {
    background-color: var(--color-dark-green);
    color: var(--color-light-text);
    padding: 60px 0 20px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-section h3,
  .footer-section h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-white);
  }
  
  .footer-section p,
  .footer-section li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .footer-section ul {
    list-style: none;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
  }
  
  .footer-section a:hover {
    color: var(--color-light-green);
  }
  
  .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
  }
  
  /* Cookie Popup */
  .cookie-consent-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    display: none;
    z-index: 1000;
  }
  
  .cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .cookie-content p {
    margin: 0;
    font-size: 0.9rem;
  }
  
  .cookie-content a {
    color: var(--color-light-green);
    text-decoration: underline;
  }
  
  .cookie-accept-btn {
    background-color: var(--color-medium-green);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .hero-container, .about-content, .unique-content, .contact-content {
      flex-direction: column;
      text-align: center;
    }
    
    .about-image, .unique-image {
      order: -1;
      margin-bottom: 30px;
    }
    
    .about-visual {
      grid-template-columns: 1fr;
    }
    
    .about-coaching-image {
      display: none;
    }
  
    .nav-menu {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      background-color: var(--color-white);
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
      padding: 20px 0;
    }
    
    .nav-menu.active {
      display: flex;
    }
  
    .nav-menu li {
      text-align: center;
      margin: 10px 0;
    }
  
    .nav-toggle {
      display: flex;
    }
  }
  
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1rem;
    }
  }