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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #34495E;
    overflow-x: hidden;
    background-color: #ECF0F1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.nav-logo h2 {
    color: #81cc5b;
    font-weight: 700;
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #34495E;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #81cc5b;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #34495E;
    margin: 4px 0;
    transition: 0.3s;
}

.hero {
 background: linear-gradient(135deg, #5bcc7f 0%, #76b380 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 75px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.8rem;
    line-height: 1.15;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button {
    background: #F1C40F;
    color: #34495E;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(241, 196, 15, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(241, 196, 15, 0.5);
    filter: brightness(1.1);
}

.hero-visual {
    position: relative;
    height: 420px;
}

.hero-main-image {
    position: absolute;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 40px rgba(91, 91, 204, 0.3);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-15px); }
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    color: #34495E;
}

.about {
    padding: 100px 0;
    background: #FFFFFF;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.6rem;
    margin-bottom: 1.8rem;
    color: #34495E;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #7F8C8D;
}

.about-visual {
    position: relative;
    height: 420px;
}

.about-team-image {
    position: absolute;
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    top: 8%;
    left: 15%;
    box-shadow: 0 18px 38px rgba(91, 91, 204, 0.3);
    animation: float 7s ease-in-out infinite;
}

.about-coaching-image {
    position: absolute;
    width: 220px;
    height: 170px;
    object-fit: cover;
    border-radius: 20px;
    bottom: 10%;
    right: 15%;
    box-shadow: 0 18px 38px rgba(241, 196, 15, 0.3);
    animation: float 5s ease-in-out infinite reverse;
}

.why-choose {
    padding: 100px 0;
    background: #ECF0F1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem;
    border-radius: 25px;
    background: white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    margin-bottom: 1.8rem;
}

.icon-circle {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: linear-gradient(135deg, #81cc5b, #7C3AED);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2.2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #34495E;
}

.feature-card p {
    color: #7F8C8D;
}

.program {
    padding: 100px 0;
    background: #FFFFFF;
}

.program-with-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('img/main-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.program-with-bg .section-title {
    color: white;
}

.program-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.module-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    color: #34495E;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.module-card h3 {
    color: #81cc5b;
    margin-bottom: 1.2rem;
    font-size: 1.35rem;
}

.module-card p {
    color: #7F8C8D;
}

.pricing {
    padding: 100px 0;
     background: linear-gradient(135deg, #5bcc7f 0%, #76b380 100%);
    color: white;
}

.pricing .section-title {
    color: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.pricing-card {
    background: white;
    color: #34495E;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.pricing-card.featured {
    transform: scale(1.06);
    border: 4px solid #F1C40F;
    box-shadow: 0 25px 50px rgba(241, 196, 15, 0.35);
}

.pricing-header h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #34495E;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #81cc5b;
    margin-bottom: 1.5rem;
}

.pricing-description {
    color: #7F8C8D;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    padding-left: 10%;
}

.pricing-features li {
    padding: 0.6rem 0;
    color: #7F8C8D;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li::before {
    content: '✓';
    color: #F1C40F;
    font-weight: bold;
    font-size: 1.2em;
}

.pricing-button {
    background: linear-gradient(135deg, #81cc5b, #7C3AED);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 90%;
    box-shadow: 0 10px 20px rgba(91, 91, 204, 0.2);
}

.pricing-button:hover {
    background: linear-gradient(135deg, #7C3AED, #81cc5b);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(91, 91, 204, 0.3);
}

.unique {
    padding: 100px 0;
    background: #FFFFFF;
}

.unique-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.unique-text h2 {
    font-size: 2.6rem;
    margin-bottom: 1.8rem;
    color: #34495E;
}

.unique-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #7F8C8D;
    line-height: 1.8;
}

.unique-image {
    position: relative;
}

.unique-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.unique-main-image:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

.testimonials {
    padding: 100px 0;
    background: #ECF0F1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.stars {
    color: #F1C40F;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.testimonial-card p {
    color: #7F8C8D;
    font-style: italic;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-weight: 600;
    color: #34495E;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #81cc5b, #7C3AED);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.contact {
    padding: 100px 0;
    background: #FFFFFF;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #34495E;
}

.contact-info p {
    color: #7F8C8D;
    margin-bottom: 2.5rem;
}

.contact-email {
    color: #81cc5b;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-form {
    background: #ECF0F1;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #D5DBE1;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #81cc5b;
    box-shadow: 0 0 0 3px rgba(91, 91, 204, 0.2);
}

.error-message {
    color: #E74C3C;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

.submit-button {
    background: #F1C40F;
    color: #34495E;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 12px 30px rgba(241, 196, 15, 0.3);
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(241, 196, 15, 0.45);
    filter: brightness(1.1);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.blog {
    padding: 100px 0;
    background: #ECF0F1;
}

.blog-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: white;
    padding: 2.8rem;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.blog-meta {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-date {
    color: #7F8C8D;
}

.blog-category {
    background: #81cc5b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: #34495E;
    margin-bottom: 1.2rem;
    line-height: 1.35;
}

.blog-excerpt {
    color: #7F8C8D;
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.blog-link {
    color: #81cc5b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #7C3AED;
}

.cookie-consent-popup {
    position: fixed;
    bottom: 25px;
    left: 25px;
    right: 25px;
    background: #34495E;
    color: white;
    padding: 1.8rem;
    border-radius: 18px;
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25);
    z-index: 1001;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    color: #D5DBE1;
    font-size: 1.05rem;
}

.cookie-content a {
    color: #F1C40F;
    text-decoration: underline;
}

.cookie-accept-btn {
    background: #F1C40F;
    color: #34495E;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.2);
}

.cookie-accept-btn:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 20px rgba(241, 196, 15, 0.3);
}

.footer {
    background: #37502c;
    color: white;
    padding: 70px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.2rem;
    color: #81cc5b;
    font-weight: 600;
}

.footer-section p {
    color: #ABB2BF;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

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

.footer-section a:hover {
    color: #81cc5b;
}

.footer-bottom {
    border-top: 1px solid #4A5868;
    padding-top: 1.5rem;
    text-align: center;
    color: #8C98A5;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 80px 20px 40px;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 1.5rem;
    }
    
    .features-grid,
    .program-modules,
    .pricing-cards,
    .testimonials-grid,
    .blog-articles,
    .about-content,
    .unique-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .section-title {
        font-size: 2.2rem;
    }

    .hero-main-image {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        width: 90%;
        max-width: 400px;
        height: 250px;
        margin: 0 auto;
        display: block;
        box-shadow: 0 15px 30px rgba(91, 91, 204, 0.2);
        animation: none;
    }

    .hero-visual {
        height: auto;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-team-image,
    .about-coaching-image {
        position: relative;
        width: 80%;
        height: 180px;
        margin: 1rem auto;
        display: block;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        animation: none;
    }
    
    .about-visual {
        height: auto;
        text-align: center;
    }

    .unique-main-image {
        height: 280px;
        width: 90%;
        margin: 0 auto;
        display: block;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .blog-card {
        padding: 2rem;
    }

    .cookie-consent-popup {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }

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

    .feature-card,
    .module-card,
    .pricing-card,
    .testimonial-card,
    .blog-card {
        padding: 1.8rem;
    }
}


.legal-section {
    padding: 150px 0 100px;
    background: #ECF0F1;
    color: #34495E;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 25px;
}

.legal-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #34495E;
    text-align: center;
}

.legal-content {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
    color: #5B5BCC;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 2rem;
    font-weight: 600;
}

.legal-content h3 {
    color: #34495E;
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.legal-content p {
    color: #7F8C8D;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.legal-content ul {
    color: #7F8C8D;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    list-style-type: disc;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-content strong {
    color: #34495E;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #D5DBE1;
    padding: 1rem 1.2rem;
    text-align: left;
    font-size: 0.95rem;
}

.cookie-table th {
    background-color: #F8FAFB;
    font-weight: 600;
    color: #34495E;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cookie-table td {
    color: #7F8C8D;
}

.back-link {
    text-align: center;
    margin-top: 3rem;
}

.back-link a {
    color: #5B5BCC;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
}

.back-link a:hover {
    color: #7C3AED;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .legal-section {
        padding: 100px 0 60px;
    }

    .legal-title {
        font-size: 2.2rem;
        margin-bottom: 1.8rem;
    }
    
    .legal-content {
        padding: 2rem;
    }

    .legal-content h2 {
        font-size: 1.6rem;
        margin-top: 2rem;
    }

    .legal-content h3 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    .legal-content p {
        font-size: 1rem;
    }

    .cookie-table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .cookie-table thead, .cookie-table tbody, .cookie-table th, .cookie-table td, .cookie-table tr {
        display: block;
    }

    .cookie-table thead {
        float: left;
        white-space: normal;
    }

    .cookie-table tbody {
        display: block;
        width: auto;
        position: relative;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .cookie-table th, .cookie-table td {
        white-space: normal;
        display: block;
        border-bottom: 1px solid #D5DBE1;
        width: 100%;
        box-sizing: border-box;
    }

    .cookie-table th {
        text-align: right;
        padding-right: 20px;
    }

    .cookie-table tbody tr {
        margin-bottom: 10px;
        border: 1px solid #D5DBE1;
        border-radius: 8px;
        overflow: hidden;
    }
    .cookie-table tr {
        display: flex;
        flex-direction: column;
        margin-bottom: 15px;
    }
    .cookie-table th, .cookie-table td {
        border: none;
        padding: 10px 15px;
        text-align: left;
    }
    .cookie-table th {
        background-color: #F8FAFB;
    }
    .cookie-table td:before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #34495E;
    }
    .cookie-table th, .cookie-table td {
        display: block;
    }
}

@media (max-width: 480px) {
    .legal-container {
        padding: 0 15px;
    }
    .legal-title {
        font-size: 1.8rem;
    }
    .legal-content {
        padding: 1.5rem;
    }
    .legal-content h2 {
        font-size: 1.4rem;
    }
    .legal-content h3 {
        font-size: 1.2rem;
    }
    .legal-content p, .legal-content ul li {
        font-size: 0.95rem;
    }
    .cookie-table th, .cookie-table td {
        padding: 8px 12px;
    }
    .cookie-table tbody tr {
        margin-bottom: 8px;
    }
}