/* ==========================
   BMWroom ABOUT PAGE
   ========================== */

.about{
    padding: 70px 20px;
    color: #fff;
    background: #0b0b0b;
}

/* CONTAINER */
.about .container-grid{
    max-width: 1000px;
    margin: 0 auto;
}

/* TITLE */
.about h1{
    font-size: 38px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* HEADINGS */
.about h2{
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #f5b400;
    letter-spacing: 0.5px;
}

/* TEXT */
.about p{
    line-height: 1.8;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 15px;
}

/* LISTS */
.about ul{
    padding-left: 20px;
    margin-bottom: 20px;
}

.about ul li{
    margin-bottom: 8px;
    opacity: 0.9;
}

/* BLOCKS (FILIALS) */
.about-block{
    padding: 15px 18px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.03);
    transition: 0.2s ease;
}

.about-block:hover{
    transform: translateY(-2px);
    border-color: rgba(245, 180, 0, 0.4);
}

/* CTA BUTTONS AREA */
.about-cta{
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* BUTTON BASE (reuse from 404 style) */
.about .error404-btn{
    display: inline-block;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
}

/* PRIMARY */
.about .error404-main{
    background: #fff;
    color: #000;
}

.about .error404-main:hover{
    transform: translateY(-2px);
}

/* SECONDARY */
.about .error404-catalog{
    border: 1px solid #fff;
    color: #fff;
}

.about .error404-catalog:hover{
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px){

    .about h1{
        font-size: 28px;
    }

    .about h2{
        font-size: 20px;
    }

    .about p{
        font-size: 15px;
    }

    .about-cta{
        flex-direction: column;
    }
}