.about-container{

    width:90%;
    max-width:1250px;
    margin:auto;

}

.about-hero{

    padding:100px 0 70px;
    text-align:center;

}

.page-tag{

    display:inline-block;
    background:#1b5e20;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:25px;

}

.about-hero h1{

    font-size:52px;
    color:#fff;
    margin-bottom:25px;

}

.about-hero p{

    color:#d8d8d8;
    font-size:19px;
    line-height:1.8;
    max-width:900px;
    margin:auto;

}

.about-section{

    padding:80px 0;

}

.about-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;

}

.about-grid div{

    background:#14274a;
    padding:35px;
    border-radius:18px;

}

.about-grid h2{

    color:#fff;
    margin-bottom:20px;

}

.about-grid p{

    color:#d8d8d8;
    line-height:1.8;

}

.section-title{

    color:#fff;
    text-align:center;
    margin-bottom:50px;
    font-size:38px;

}

.technology-section{

    padding:90px 0;

}

.technology-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;

}

.tech-card{

    background:#13294b;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.35s;

}

.tech-card:hover{

    transform:translateY(-8px);

}

.tech-icon{

    font-size:45px;
    margin-bottom:20px;

}

.tech-card h3{

    color:white;
    margin-bottom:15px;

}

.tech-card p{

    color:#d8d8d8;
    line-height:1.7;

}

.why-section{

    padding:80px 0;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

}

.why-grid div{

    background:#16345f;
    color:white;
    padding:25px;
    border-radius:15px;
    text-align:center;
    font-weight:600;

}

.team-section{

    padding:90px 0;

}

.team-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.team-card{

    background:#14274a;
    padding:35px;
    border-radius:18px;
    color:white;
    text-align:center;
    font-size:50px;

}

.team-card h3{

    margin:20px 0;

}

.team-card p{

    color:#d7d7d7;
    font-size:16px;
    line-height:1.7;

}

.contact-box{

    padding:100px 0;
    text-align:center;

}

.contact-box h2{

    color:white;
    font-size:42px;
    margin-bottom:20px;

}

.contact-box p{

    color:#d8d8d8;
    font-size:18px;

}

.about-buttons{

    margin-top:40px;

}

.about-btn{

    display:inline-block;
    background:#ffb300;
    color:#111;
    padding:15px 34px;
    margin:10px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;

}

.about-btn.secondary{

    background:#1b5e20;
    color:white;

}

@media(max-width:900px){

.about-grid,
.team-grid,
.why-grid{

grid-template-columns:1fr;

}

.about-hero h1{

font-size:36px;

}

.section-title{

font-size:30px;

}

}