.about-page {
    background: #ffffff;
    color: #1e293b;
}

.about-hero {
    background: linear-gradient(
        rgba(15,23,42,.85),
        rgba(15,23,42,.85)
    ),
    url('/son3/public/assets/img/about-bg.jpg')
    center/cover no-repeat;

    text-align: center;
    padding: 120px 20px;
    color: white;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 20px;
    color: #cbd5e1;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 30px;
}

.about-content h2 {
    color: #ff7a00;
    font-size: 36px;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #475569;
}

.about-stats {
    background: #0f172a;
    padding: 80px 30px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: #1e293b;
    border-radius: 12px;
    transition: .3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    color: #ff7a00;
    font-size: 48px;
    margin-bottom: 10px;
}

.stat-card span {
    color: #cbd5e1;
    font-size: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.value-box {
    background: #f8fafc;
    padding: 35px;
    border-radius: 12px;
    border-top: 4px solid #ff7a00;
}

.value-box h3 {
    color: #ff7a00;
    margin-bottom: 15px;
}

.value-box p {
    color: #475569;
    line-height: 1.8;
}

@media(max-width:900px) {

    .about-stats {
        grid-template-columns: repeat(2,1fr);
    }

    .about-values {
        grid-template-columns: 1fr;
    }

}

@media(max-width:600px) {

    .about-hero h1 {
        font-size: 38px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

}