@media (max-width: 992px) {

    /* VIDEO SECTION */
    .video-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .video-text {
        max-width: 90%;
        margin-bottom: 2rem;
        text-align: justify;
    }

    .video-wrapper {
        margin-top: 0;
        align-items: center;
        width: 100%;
    }

    .video-wrapper video {
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 12px;
    }

    .video-section-title {
        font-size: 2.8rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    /* VALUES SECTION */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    /* COACHING SECTION */
    .coaching-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .cta-wrapper {
        justify-content: center;
        margin-top: 1.5rem;
    }

    /* FOOTER */
    .footer-container {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }

    .footer-info {
        text-align: left;
        line-height: 1.5;
    }

    .footer-images {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .footer-images img {
        height: 60px;
        width: auto;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    /* HEADER */
    .header-container {
        grid-template-columns: auto minmax(200px, auto) auto;
        gap: 1rem;
    }

    .logo img {
        width: 210px;
        height: auto;
    }

    .slogan {
        font-size: 1.35rem;
        padding: 0.4rem 0;
        white-space: normal;
        max-width: 340px;
    }

    .header-socials img {
        width: 26px;
        height: 26px;
    }

    /* VALUES SECTION */
    .values-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem 3rem;
    }

    /* COACHING SECTION */
    .coaching-section {
        padding: 3rem 2rem;
    }

    .coaching-content {
        gap: 1rem;
        padding: 1.8rem;
    }

    .coaching-text h2 {
        font-size: 1.75rem;
        text-align: left;
    }

    .coaching-text p {
        font-size: 0.95rem;
        text-align: left;
        padding: 10px;
    }

    .cta-wrapper {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 768px) {

    /* HEADER */
    .header-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
        padding: 1rem 0;
    }

    .header-socials {
        margin-top: 0.4rem;
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .header-socials img {
        width: 28px;
        height: 28px;
    }

    .logo img {
        height: 50px;
    }

    .slogan {
        font-size: 1.25rem;
        line-height: 1.3;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    /* VIDEO & COACHING */
    .video-section-title {
        font-size: 3rem;
    }

    .coaching-content {
        padding: 10px;
        gap: 0;
    }

    .coaching-text {
        padding-top: 0.8rem;
    }

    .coaching-text .coaching-kicker {
        margin-top: 0;
    }

    .coaching-text h2 {
        padding-top: 1.5rem;
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .coaching-text p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* ACADEMIC PROGRAMS SECTION */
    .offers-grid {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        padding: 0 1rem;
    }

    .offer-block {
        width: 280px;
        max-width: 100%;
        min-height: 90px;
    }

    .offer-info {
        display: none;
        padding: 1rem;
        margin-top: 0;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    /* STAFF MOBILE */
    .staff-section {
        display: none;
    }

    .staff-section-mobile {
        display: block;
        padding: 2rem 1rem;
        background: #ffffff;
    }

    .staff-section-mobile h2 {
        text-align: center;
        margin-bottom: 1.5rem;
        color: black;
        font-family: var(--titles);
        font-size: 1.6rem;
    }

    .accordion-item {
        margin-bottom: 0.75rem;
        border: 1px solid #ccc;
        border-radius: 8px;
        overflow: hidden;
    }

    .accordion-header {
        width: 100%;
        background: var(--secondary-color);
        color: #fff;
        padding: 0.9rem 1rem;
        font-family: var(--titles);
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
        border: none;
        cursor: pointer;
        text-transform: none;
        letter-spacing: 0.5px;
        font-style: italic;
    }

    .accordion-content {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        text-align: center;
        padding: 1.5rem 1rem;
        background: #fff;
    }

    .staff-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
        padding: 0 0 1rem 0;
        font-size: 0.95rem;
    }

    .staff-members {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.2rem;
    }

    .staff-member {
        flex: 0 0 calc(33.333% - 0.8rem);
        max-width: 100px;
        text-align: center;
    }

    .staff-member img {
        width: 100%;
        border-radius: 50%;
        aspect-ratio: 1/1;
        object-fit: cover;
        margin-bottom: 0.5rem;
    }

    /* TESTIMONIALS */
    .testimonials-fade {
        width: 90%;
        margin: 4.5rem auto 0 auto;
    }

    .testimonial.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 1.5rem 2rem 1.5rem;
        overflow: visible;
        width: 100%;
        box-sizing: border-box;
    }

    .testimonial-image {
        flex-basis: auto;
        width: auto;
        margin-top: -50px;
        margin-bottom: 1.2rem;
        z-index: 2;
    }

    .testimonial-image img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid #ffffff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }

    .testimonial-content {
        flex-basis: auto;
        padding: 0;
        width: 100%;
    }

    .testimonial-content p {
        font-size: 1.05rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        text-align: justify;
    }

    .testimonial-content strong,
    .testimonial-content span {
        text-align: center !important;
    }
}

@media (max-width: 600px) {
    .header-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }

    .slogan {
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    /* HEADER */
    header {
        padding: 0.5rem 0;
    }

    .logo img {
        height: 55px;
    }

    .slogan {
        font-size: 1.2rem;
        padding: 0 0.5rem;
        text-align: center;
    }

    .header-socials {
        gap: 1.5rem;
        display: flex;
        justify-content: center;
        margin-top: 0.3rem;
    }

    .header-socials img {
        width: 28px;
        height: 28px;
    }

    /* VIDEO SECTION */
    .video-section {
        padding: 0.5rem;
    }

    .video-section-title {
        font-size: 2.4rem;
        padding: 10px;
        margin: 0;
    }

    .video-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        text-align: justify;
    }

    .video-content {
        gap: 1.5rem;
    }

    /* VALUES SECTION */
    .values-section {
        padding: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .value-card {
        width: 100%;
        box-sizing: border-box;
        padding: 1.8rem 1.2rem;
        text-align: justify;
    }

    .value-card:active {
        transform: translateY(-4px);
        border-color: rgba(255, 102, 0, 0.2);
        box-shadow: 0 15px 30px rgba(255, 102, 0, 0.08);
    }

    .value-card:active .card-icon-header i {
        transform: scale(1.1);
        background: var(--secondary-color);
        color: #ffffff;
    }

    .value-card h3 {
        font-size: 1.25rem;
    }

    .value-card p {
        font-size: 0.95rem;
    }

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

    .values-list li {
        flex: 0 0 100%;
        padding-right: 0;
    }

    /* STAFF SECTION */
    .staff-section-mobile .staff-header-global {
        margin-bottom: 1.5rem;
    }

    .staff-section-mobile .staff-header-global h2 {
        font-size: 1.6rem;
        text-align: center;
        color: black;
        font-family: var(--titles);
    }

    .staff-section-mobile .staff-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 auto 1.5rem auto;
        max-width: 100%;
        width: 100%;
        padding: 0;
    }

    .avatar-holder {
        width: 85px;
        height: 85px;
        border-width: 3px;
        margin: 0 auto 0.8rem;
    }

    .founder .avatar-holder {
        width: 110px;
        height: 110px;
    }

    .avatar-holder img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .staff-section-mobile .staff-members {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 1.5rem 0.5rem;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .staff-section-mobile .staff-member {
        flex: 0 0 48%;
        max-width: 48%;
        text-align: center;
    }

    .staff-founder-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 1rem 0;
        margin-top: 0;
    }

    .founder {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .founder-role,
    .founder-name {
        white-space: nowrap;
        align-self: center;
        text-align: center;
    }

    /* COACHING SECTION */
    .coaching-section {
        padding: 1.5rem 1rem;
    }

    .coaching-content {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 2.5rem 1.5rem;
    }

    .coaching-text {
        text-justify: inter-word;
        hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
    }

    .coaching-content::before {
        width: 100%;
        height: 5px;
    }

    .coaching-text h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }

    .coaching-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .cta-wrapper {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* ACADEMIC PROGRAMS SECTION */
    .offers-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

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

    /* FOOTER */
    .footer-container {
        display: flex;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .footer-info {
        text-align: center !important;
        width: 100%;
    }

    .footer-info p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }

    .footer-info p:last-child {
        margin-bottom: 0;
        font-size: 0.8rem;
    }

    .footer-images {
        display: flex;
        flex-direction: row;
        justify-content: center !important;
        align-items: center;
        gap: 1.5rem;
        width: 100%;
        margin-top: 0.5rem;
    }

    .footer-images img {
        height: 45px;
        width: auto;
    }

    /* BACK TO TOP */
    .custom-top-btn {
        left: 50%;
    }
}