/* ==========================================
   ABOUT HERO
========================================== */

.about-hero{
    background: linear-gradient(
        135deg,
        #0d2c4a,
        #16466f
    );

    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.about-hero h1{
    font-size:48px;
    margin-bottom:15px;
    font-weight:700;
}

.about-hero p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.7;
    opacity:.95;
}

.hero-btn{
    display:inline-block;
    margin-top:30px;
    background:#2ec4b6;
    color:#fff;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.hero-btn:hover{
    background:#22b3a5;
    transform:translateY(-3px);
}

/* ==========================================
   COMMON SECTIONS
========================================== */

.story-section,
.values-section,
.trust-section,
.founder-section,
.about-cta{
    padding:80px 0;
}

.story-section h2,
.values-section h2,
.trust-section h2,
.founder-section h2,
.about-cta h2{
    text-align:center;
    margin-bottom:40px;
    color:#0d2c4a;
    font-size:36px;
}

/* ==========================================
   STORY SECTION
========================================== */

.story-content{
    max-width:900px;
    margin:auto;
}

.story-content p{
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
    font-size:17px;
}

/* ==========================================
   VALUES
========================================== */

.values-section{
    background:#f5f7fa;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.value-card{
    background:#fff;
    padding:30px;
    border-radius:12px;
    text-align:center;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.3s;
}

.value-card:hover{
    transform:translateY(-5px);
}

.value-card h3{
    color:#0d2c4a;
    margin-bottom:15px;
}

.value-card p{
    color:#666;
    line-height:1.7;
}

/* ==========================================
   TRUST SECTION
========================================== */

.trust-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.trust-card{
    background:#fff;
    padding:30px;
    border-radius:12px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.3s;
}

.trust-card:hover{
    transform:translateY(-5px);
}

.trust-card h3{
    color:#0d2c4a;
    margin-bottom:15px;
}

.trust-card p{
    color:#666;
    line-height:1.7;
}

/* ==========================================
   FOUNDER
========================================== */

.founder-section{
    background:#f5f7fa;
}

.founder-box{
    max-width:900px;
    margin:auto;

    background:#fff;

    padding:50px;

    border-radius:15px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    text-align:center;
}

.quote{
    font-size:22px;
    line-height:1.8;
    color:#444;
    font-style:italic;
}

.founder-box h4{
    margin-top:25px;
    color:#2ec4b6;
    font-size:20px;
}

/* ==========================================
   CTA
========================================== */

.about-cta{
    background:#0d2c4a;
    color:white;
    text-align:center;
}

.about-cta p{
    max-width:700px;
    margin:20px auto 35px;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.cta-btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:8px;
    transition:.3s;
    font-weight:600;
}

.cta-btn{
    background:#2ec4b6;
    color:white;
}

.cta-btn:hover{
    background:#22b3a5;
}

.secondary{
    background:transparent;
    border:2px solid white;
}

.secondary:hover{
    background:white;
    color:#0d2c4a;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:768px){

    .about-hero{
        padding:80px 20px;
    }

    .about-hero h1{
        font-size:34px;
    }

    .about-hero p{
        font-size:16px;
    }

    .story-section,
    .values-section,
    .trust-section,
    .founder-section,
    .about-cta{
        padding:60px 0;
    }

    .story-section h2,
    .values-section h2,
    .trust-section h2,
    .founder-section h2,
    .about-cta h2{
        font-size:28px;
    }

    .founder-box{
        padding:30px;
    }

    .quote{
        font-size:18px;
    }
}

.story-section h2,
.values-section h2,
.trust-section h2,
.founder-section h2,
.about-cta h2{
    color:#0d2c4a;
    position:relative;
}

.story-section h2::after,
.values-section h2::after,
.trust-section h2::after,
.founder-section h2::after{
    content:'';
    width:70px;
    height:4px;
    background:#2ec4b6;
    display:block;
    margin:15px auto 0;
    border-radius:10px;
}