/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #D4F1F4;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    background-color: #D4F1F4;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-icon {
    color: #E85D3D;
    font-size: 2rem;
}

.logo-text {
    color: #8B0000;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin-left: auto;
    margin-right: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #E85D3D;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sign-in {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sign-in:hover {
    color: #E85D3D;
}

.btn-primary {
    padding: 0.8rem 2rem;
    background-color: transparent;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a1a1a;
    color: #D4F1F4;
}

/* Hero Section */
.hero {
    background-color: #D4F1F4;
    padding: 4rem 0 6rem 0;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
}

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

.hero-content {
    position: relative;
    max-width: 650px;
}

.hero-decoration-left {
    position: absolute;
    top: -60px;
    left: -80px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-decoration-right {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-image img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Coaching Section */
.coaching-section {
    background-color: #F5F0EB;
    padding: 6rem 0;
}

.coaching-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.coaching-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

.coaching-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 4rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.coaching-content {
    display: grid;
    grid-template-columns: 300px 1fr 400px;
    gap: 3rem;
    align-items: center;
}

/* Left Sidebar - Tabs */
.coaching-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tab-item {
    background: transparent;
    border: none;
    border-left: 4px solid transparent;
    padding: 1.5rem 1.5rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    color: #888;
    font-weight: 400;
}

.tab-item:hover {
    color: #1a1a1a;
}

.tab-item.active {
    border-left-color: #E85D3D;
    color: #1a1a1a;
    font-weight: 500;
}

.tab-text {
    display: block;
}

/* Center - Image */
.coaching-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.coaching-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

/* Right - Content */
.coaching-details {
    position: relative;
}

.detail-content {
    display: none;
    animation: fadeIn 0.4s ease-in;
}

.detail-content.active {
    display: block;
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.detail-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1a1a1a;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features-section {
    background-color: #0D4A4F;
    padding: 6rem 0;
    border-radius: 50px;
    margin: 0 3rem;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.features-left {
    padding-right: 2rem;
}

.features-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #fff;
}

.features-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #fff;
    color: #0D4A4F;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.features-right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #fff;
}

.feature-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fff;
    opacity: 0.9;
}

/* Coaching Cards Section */
.coaching-cards-section {
    background-color: #F5F0EB;
    padding: 6rem 0;
}

.coaching-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.coaching-cards-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.coaching-cards-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    max-width: 800px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.coaching-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.card-line-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.card-circle {
    width: 70px;
    height: 70px;
    background-color: #8B0000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.card-arrow {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.card-dotted-line {
    width: 2px;
    height: 150px;
    background-image: linear-gradient(to bottom, #ccc 50%, transparent 50%);
    background-size: 2px 8px;
    background-repeat: repeat-y;
}

.card-avatar {
    width: 140px;
    height: 140px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: #1a1a1a;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #D4F1F4;
    padding: 6rem 0;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.testimonials-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a1a1a;
}

.testimonials-decoration {
    margin-top: -1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.testimonial-card {
    background-color: #F5F0EB;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
}

.quote-mark {
    font-size: 6rem;
    font-weight: 700;
    color: #8B0000;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.testimonial-divider {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin-bottom: 1.5rem;
}

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

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.author-title {
    font-size: 0.95rem;
    color: #666;
}

/* FAQ Section */
.faq-section {
    background-color: #F5F0EB;
    padding: 6rem 0;
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 120px;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.faq-highlight {
    position: relative;
    display: inline-block;
}

.faq-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: #E85D3D;
    opacity: 0.4;
    z-index: -1;
}

.faq-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #1a1a1a;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #ccc;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.8rem;
    font-weight: 400;
    color: #666;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question {
    color: #1a1a1a;
}

.faq-question:hover {
    color: #1a1a1a;
}

.faq-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-left: 1rem;
}

.faq-icon svg {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-bottom: 2rem;
}

.faq-answer p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Application Form Section */
.application-form-section {
    background-color: #D4F1F4;
    padding: 6rem 0;
}

.application-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-title {
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #1a1a1a;
    max-width: 700px;
    margin: 0 auto;
}

.application-form {
    background-color: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E85D3D;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Thank You Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.modal-title {
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.modal-message {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.btn-modal-close {
    padding: 1rem 3rem;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-modal-close:hover {
    background-color: #333;
}

/* CTA Section */
.cta-section {
    background-color: #0D4A4F;
    padding: 4rem 3rem;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #8B1A1A 0%, #6B1010 100%);
    border-radius: 30px;
    padding: 3.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.cta-avatars {
    display: flex;
    gap: 1.5rem;
}

.cta-avatar {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    object-fit: cover;
}

.cta-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    max-width: 600px;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background-color: #fff;
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #E85D3D;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-contact-item {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
}

.footer-contact-item strong {
    color: #fff;
    display: block;
    margin-bottom: 0.3rem;
}

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

.footer-contact-item a:hover {
    color: #E85D3D;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 3rem;
    padding-right: 3rem;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-image {
        order: -1;
    }

    .coaching-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coaching-title {
        font-size: 2.5rem;
    }

    .detail-title {
        font-size: 2rem;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-title {
        font-size: 2.5rem;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coaching-cards-title {
        font-size: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-left {
        position: static;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .form-title {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        flex-direction: column;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        margin-right: 1.5rem;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-decoration-left {
        display: none;
    }

    .coaching-container {
        padding: 0 1.5rem;
    }

    .coaching-title {
        font-size: 2rem;
    }

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

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

    .detail-description {
        font-size: 1rem;
    }

    .features-section {
        margin: 0 1.5rem;
        padding: 4rem 0;
    }

    .features-container {
        padding: 0 2rem;
    }

    .features-title {
        font-size: 2rem;
    }

    .features-description {
        font-size: 1rem;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .feature-text {
        font-size: 1rem;
    }

    .coaching-cards-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .coaching-cards-title {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .testimonials-container {
        padding: 0 1.5rem;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 2.5rem 2rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .faq-container {
        padding: 0 1.5rem;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1.5rem;
    }

    .faq-answer p {
        font-size: 1.1rem;
    }

    .application-form-container {
        padding: 0 1.5rem;
    }

    .form-title {
        font-size: 2rem;
    }

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

    .application-form {
        padding: 2rem 1.5rem;
    }

    .cta-section {
        padding: 3rem 1.5rem;
    }

    .cta-container {
        padding: 2.5rem 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-avatar {
        width: 70px;
        height: 70px;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-bottom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .tab-item {
        font-size: 1rem;
        padding: 1rem;
    }

    .detail-title {
        font-size: 1.5rem;
    }

    .features-section {
        margin: 0 1rem;
        padding: 3rem 0;
        border-radius: 30px;
    }

    .features-container {
        padding: 0 1.5rem;
    }

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

    .features-description {
        font-size: 0.95rem;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-text {
        font-size: 0.95rem;
    }

    .btn-white {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .coaching-cards-container {
        padding: 0 1.5rem;
    }

    .coaching-cards-title {
        font-size: 1.8rem;
    }

    .card-dotted-line {
        height: 120px;
    }

    .card-avatar {
        width: 120px;
        height: 120px;
    }

    .card-title {
        font-size: 1.2rem;
    }

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

    .quote-mark {
        font-size: 4.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonials-decoration {
        width: 60px;
    }

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

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

    .faq-question {
        font-size: 1.2rem;
        padding: 1.5rem 0;
    }

    .faq-icon {
        width: 40px;
        height: 40px;
    }

    .faq-icon svg {
        width: 20px;
        height: 20px;
    }

    .faq-answer p {
        font-size: 1rem;
    }

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

    .application-form {
        padding: 1.5rem 1rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-message {
        font-size: 1rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-avatar {
        width: 60px;
        height: 60px;
    }

    .cta-avatars {
        gap: 1rem;
    }

    .btn-cta {
        width: 100%;
        padding: 1rem 2rem;
    }

    .footer {
        padding: 3rem 0 1.5rem 0;
    }

    .footer-container {
        padding: 0 1rem;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
    }

    .footer-bottom {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}
