    .sauton-tc .row {
        max-width: 1400px !important;
    }

    section.hero-tc {
        padding: 2em 0;
        text-align: center;
        background: var(--bg-cream);
    }

    section.hero-tc h1 {
        font-size: 60px;
    }

    .filter-bar {
        text-align: left;
        width: 40%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .filter-bar label {
        font-size: 14px;
        width: 50%;
        margin: 0;
        font-weight: normal !important;
        text-transform: uppercase;
    }

    select#regione-filter {
        padding: 8px;
        border-radius: 8px;
        border: 1px solid #ccc;
        margin: 0;
        font-size: 18px;
        height: auto;
    }

    #coach-mappa-interattiva {
        height: 500px;
        width: 100%;
        border-radius: 12px;
    }

    .introtxt {
        max-width: 800px;
        margin: 0 auto 60px;
    }

    /** Grid Coach Section **/
    section.grid-section {
        background: var(--bg-cream);
        padding: 2em 0;
    }

    .region-label {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #28AEA4;
        font-weight: 600;
        margin-bottom: 16px;
        padding-bottom: 8px;
        border-bottom: 2px solid #E8F4F3;
    }

    .coach-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }

    .coach-card {
        background: #fff;
        border-radius: 12px;
        padding: 28px;
        border: 1px solid #E5E5E5;
        text-decoration: none;
        color: inherit;
        display: block;
        transition: transform 0.25s;
    }

    .coach-card-header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 14px;
    }

    .coach-photo {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        overflow: hidden;
        background: #E8F4F3;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .coach-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .coach-photo span {
        color: #28AEA4;
        font-weight: bold;
    }

    .coach-name {
        font-size: 20px;
        font-weight: 600;
    }

    .coach-location {
        font-size: 14px;
        color: #555;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .coach-excerpt {
        font-size: 15px;
        color: #555;
        line-height: 1.6;
        margin-bottom: 16px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }

    .coach-card-cta {
        font-size: 14px;
        font-weight: 600;
        color: #28AEA4;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /** Why section */
    section.why-section {
        padding: 3em 0;
    }

    section.why-section .txtintro {
        max-width: 850px;
        margin: 0 auto;
        text-align: center;
    }

    .why-cards {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 28px;
        margin-top: 30px;
    }

    .why-card {
        background: var(--white);
        border-radius: 20px;
        padding: 32px;
        border: 1px solid #ddd;
    }

    .why-card-icon {
        width: 48px;
        height: 48px;
        background: var(--teal-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        color: var(--teal);
    }

    .why-card h3 {
        font-size: 19px;
        margin-bottom: 8px;
        font-weight: bold;
    }

    .why-card p {
        font-size: 15px;
        color: var(--gray-600);
        line-height: 1.6;
    }

    /** cta section **/
    section.cta-section {
        padding: 4em 0;
        background: var(--cream);
        text-align: center;
    }

    section.cta-section a.button {
        font-size: 22px !important;
        text-align: center !important;
    }

    section.cta-section .cta-sub {
        font-size: 15px;
    }

    /** become section **/
    section.become-section {
        padding: 4em 0;
        background: var(--teal);
        text-align: center;
    }

    section.become-section h3 {
        color: #fff;
        font-weight: bold;
        font-size: 40px;
    }

    section.become-section p {
        font-size: 18px;
        color: #fff;
    }

    section.become-section a {
        background-color: #fff !important;
        border-radius: 8px !important;
        color: var(--teal);
        font-size: 22px !important;
        font-weight: bold !important;
        margin-bottom: 0.5em !important;
        line-height: 1 !important;
        text-transform: uppercase;
        padding: 0.75em 1.25em !important;
        text-decoration: none;
        display: inline-block;
        text-align: center;
        border: 2px solid #ffffff;
    }

    section.become-section a:hover {
        background-color: #f7f7f7 !important;
    }

    @media only screen and (max-width: 768px) {

        section.cta-section .columns,
        section.become-section .columns {
            width: 100%;
        }

        section.hero-tc h1 {
            font-size: 27px;
        }

        .filter-bar {
            width: 100%;
        }

        .txtintro h2 {
            font-size: 32px;
        }

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

        section.cta-section a.button {
            font-size: 18px !important;
            text-align: center !important;
            line-height: 1.4 !important;
        }

        section.become-section h3 {
            font-size: 30px;
        }
    }