/* ========================================
   ABOUT PAGE
======================================== */

/* HERO */

.about-hero{
    width:100%;
    margin:0;
    padding:0;
}

.about-hero img{
    width:100%;
    display:block;
    height:auto;
}

/* ========================================
   CONTENT SECTIONS
======================================== */

.about-section,
.approach-section,
.partners-section,
.about-cta{
    padding:80px 0;
}

.about-section h2,
.approach-section h2,
.partners-section h2{
    color:var(--primary);
    margin-bottom:30px;
}

.about-section p{
    max-width:950px;
    line-height:1.8;
    margin-bottom:20px;
}

/* ========================================
   HOW WE WORK TOGETHER
======================================== */

.approach-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.approach-card{
    background:var(--primary);
    color:#fff;
    border-radius:12px;
    overflow:hidden;
    transition:all .3s ease;
}

.approach-card:hover{
    transform:translateY(-6px);
}

.approach-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.card-content{
    padding:22px;
}

.card-content h3{
    color:#fff;
    margin-bottom:12px;
}

.card-content p{
    font-size:.95rem;
    line-height:1.6;
    margin:0;
}

/* ========================================
   PARTNERS
======================================== */

.partner-logos{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:50px;
}

.partner-logos img{
    height:70px;
    width:auto;
    filter:grayscale(100%);
    opacity:.75;
    transition:.3s ease;
}

.partner-logos img:hover{
    filter:none;
    opacity:1;
}

/* ========================================
   CTA SECTION
======================================== */

.cta-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.cta-image img{
    width:100%;
    border-radius:12px;
    display:block;
}

.cta-content h2{
    color:var(--text);
    margin-bottom:30px;
    line-height:1.15;
}

.cta-content .btn-primary{
    margin-top:10px;
}

/* ========================================
   DIVIDER (OPTIONAL)
======================================== */

.section-divider{
    width:100%;
    height:1px;
    background:rgba(0,0,0,.1);
}

/* ========================================
   TABLET
======================================== */

@media (max-width:992px){

    .approach-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cta-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width:768px){

    .about-section,
    .approach-section,
    .partners-section,
    .about-cta{
        padding:60px 0;
    }

    .approach-grid{
        grid-template-columns:1fr;
    }

    .partner-logos{
        gap:30px;
    }

    .partner-logos img{
        height:55px;
    }

    .card-content{
        padding:18px;
    }
}