/* ==========================================================
   ABOUT PAGE
========================================================== */

/* HERO */

.about-hero{

    background:linear-gradient(135deg,#07131f,#10283d);

    color:#fff;

    padding:90px 20px;

}

.about-hero-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.about-hero img{

    width:100%;

    max-width:650px;

    display:block;

    margin:auto;

}

.about-hero h1{

    font-size:58px;

    line-height:1.15;

    margin-bottom:25px;

}

.about-hero p{

    font-size:22px;

    line-height:1.8;

    color:#d6d6d6;

    margin-bottom:40px;

}

.hero-badge{

    display:inline-block;

    background:#16c47f;

    color:#fff;

    padding:8px 18px;

    border-radius:25px;

    margin-bottom:25px;

    font-size:14px;

    font-weight:bold;

}


/* ==========================================================
   CONTENT SECTIONS
========================================================== */

.about-section{

    padding:90px 20px;

    background:#ffffff;

}

.about-section h2{

    text-align:center;

    margin-bottom:35px;

    color:#10283d;

}

.about-section p{

    max-width:950px;

    margin:0 auto 25px;

    line-height:1.9;

    font-size:18px;

    color:#555;

}


/* ==========================================================
   MISSION
========================================================== */

.mission{

    background:#f8fafc;

    padding:90px 20px;

}

.benefits-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.benefit{

    background:#fff;

    padding:35px;

    border-radius:12px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.benefit:hover{

    transform:translateY(-6px);

}

.benefit-icon{

    font-size:48px;

    margin-bottom:20px;

}

.benefit h3{

    margin-bottom:15px;

    color:#10283d;

}

.benefit p{

    color:#666;

    line-height:1.8;

}


/* ==========================================================
   TOPICS
========================================================== */

.topics-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:50px;

}

.topic-card{

    background:#fff;

    padding:35px;

    border-radius:12px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.topic-card:hover{

    transform:translateY(-6px);

}

.topic-card h3{

    margin-bottom:20px;

    color:#10283d;

    font-size:24px;

}

.topic-card p{

    margin:0;

    color:#666;

    line-height:1.8;

}


/* ==========================================================
   TABLE
========================================================== */

.why-us{

    background:#eef5fb;

    padding:90px 20px;

}

.why-us h2{

    text-align:center;

    margin-bottom:30px;

}

.technology-table{

    width:100%;

    border-collapse:collapse;

    margin-top:30px;

    background:#fff;

}

.technology-table th{

    background:#10283d;

    color:#fff;

    padding:18px;

    text-align:left;

}

.technology-table td{

    padding:18px;

    border-bottom:1px solid #ddd;

}

.technology-table tr:nth-child(even){

    background:#f8fafc;

}


/* ==========================================================
   CTA
========================================================== */

.about-cta{

    background:linear-gradient(135deg,#07131f,#10283d);

    color:#fff;

    text-align:center;

    padding:100px 20px;

}

.about-cta h2{

    font-size:46px;

    margin-bottom:20px;

}

.about-cta p{

    max-width:800px;

    margin:0 auto 40px;

    font-size:20px;

    line-height:1.8;

    color:#d6d6d6;

}


/* ==========================================================
   BUTTON
========================================================== */

.btn-primary{

    display:inline-block;

    background:#16c47f;

    color:#fff;

    text-decoration:none;

    padding:16px 34px;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;

}

.btn-primary:hover{

    background:#11a76b;

}


/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:900px){

.about-hero-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.about-hero h1{

    font-size:42px;

}

.about-hero p{

    font-size:18px;

}

}

@media(max-width:768px){

.benefits-grid,

.topics-grid{

    grid-template-columns:1fr;

}

.about-cta h2{

    font-size:34px;

}

.technology-table{

    display:block;

    overflow-x:auto;

}

}
