﻿```css
/* =========================================================
   ABOUT PAGE
========================================================= */
.about-page {
    width: 100%;
    background: #f7f8fa;
    color: #172033;
    overflow: hidden;
}

.about-page * {
    box-sizing: border-box;
}

.about-page a {
    text-decoration: none;
}


/* =========================================================
   NAVBAR
========================================================= */

.about-page .navbar {
    height: 78px;
    width: 100%;
    padding: 0 6%;
    background: rgba(255, 255, 255, 0.97);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #edf0f4;
    position: relative;
    z-index: 10;
}

.about-page .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #172033;
}

    .about-page .logo img {
        width: 48px;
        height: 48px;
        object-fit: cover;
        border-radius: 10px;
    }

.about-page .brand-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.about-page .nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

    .about-page .nav-links > a {
        color: #596273;
        font-size: 14px;
        font-weight: 600;
        transition: 0.25s ease;
    }

        .about-page .nav-links > a:hover {
            color: #e11d2e;
        }

        .about-page .nav-links > a.active {
            color: #e11d2e;
        }

.about-page .login-btn {
    padding: 11px 21px;
    color: #fff !important;
    background: #e11d2e;
    border-radius: 8px;
    box-shadow: 0 7px 20px rgba(225, 29, 46, 0.18);
}

    .about-page .login-btn:hover {
        background: #c91425;
        transform: translateY(-1px);
    }


/* =========================================================
   HERO
========================================================= */

.about-page .about-hero {
    min-height: 530px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url("https://imgcdn.zigwheels.vn/large/gallery/exterior/10/73/hyundai-accent-front-angle-low-view-320319.jpg");
    background-size: cover;
    background-position: center;
}

.about-page .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(9, 15, 28, 0.92) 0%, rgba(9, 15, 28, 0.72) 42%, rgba(9, 15, 28, 0.25) 100% );
}

.about-page .about-hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, 88%);
    margin: auto;
    padding: 80px 0;
    color: #fff;
}

.about-page .hero-badge {
    display: inline-flex;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(5px);
}

.about-page .about-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 900;
}

.about-page .about-hero-content > p {
    max-width: 600px;
    margin: 0;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
}

.about-page .hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.about-page .hero-button {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

    .about-page .hero-button.primary {
        color: #fff;
        background: #e11d2e;
    }

        .about-page .hero-button.primary:hover {
            background: #c91425;
            transform: translateY(-2px);
        }

    .about-page .hero-button.secondary {
        color: #fff;
        border: 1px solid rgba(255,255,255,0.4);
        background: rgba(255,255,255,0.08);
    }

        .about-page .hero-button.secondary:hover {
            background: rgba(255,255,255,0.16);
        }


/* =========================================================
   COMMON
========================================================= */

.about-page .section-tag {
    display: inline-block;
    margin-bottom: 13px;
    color: #e11d2e;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.about-page .section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

    .about-page .section-heading h2 {
        margin: 0 0 15px;
        color: #172033;
        font-size: clamp(32px, 4vw, 46px);
        line-height: 1.15;
        letter-spacing: -1.2px;
    }

    .about-page .section-heading p {
        margin: 0;
        color: #707989;
        line-height: 1.75;
        font-size: 15px;
    }


/* =========================================================
   INTRODUCTION
========================================================= */

.about-page .company-intro {
    padding: 100px 0;
    background: #fff;
}

.about-page .intro-container {
    width: min(1180px, 88%);
    margin: auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 85px;
    align-items: center;
}

.about-page .intro-image {
    position: relative;
    min-height: 500px;
}

    .about-page .intro-image > img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        border-radius: 18px;
        display: block;
        box-shadow: 0 25px 60px rgba(20, 30, 50, 0.12);
    }

.about-page .image-badge {
    position: absolute;
    right: -28px;
    bottom: 35px;
    min-width: 180px;
    padding: 22px 25px;
    background: #e11d2e;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(225, 29, 46, 0.22);
}

    .about-page .image-badge strong {
        display: block;
        font-size: 38px;
        line-height: 1;
        margin-bottom: 5px;
    }

    .about-page .image-badge span {
        font-size: 13px;
        opacity: 0.9;
    }

.about-page .intro-content h2 {
    margin: 0 0 22px;
    font-size: clamp(34px, 4vw, 49px);
    line-height: 1.13;
    letter-spacing: -1.5px;
}

    .about-page .intro-content h2 span {
        display: block;
        color: #e11d2e;
    }

.about-page .intro-content p {
    color: #697386;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 15px;
}

.about-page .intro-content .intro-lead {
    color: #414b5d;
    font-size: 17px;
}

.about-page .intro-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 30px;
}

.about-page .intro-point {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.about-page .point-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #e11d2e;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 800;
}

.about-page .intro-point strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
}

.about-page .intro-point span {
    color: #7a8392;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   COMPANY INFORMATION
========================================================= */

.about-page .company-info-section {
    padding: 100px 0;
    background: #f7f8fa;
}

.about-page .company-info-container {
    width: min(1180px, 88%);
    margin: auto;
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(20, 30, 50, 0.06);
}

.about-page .company-info-header {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 35px 40px;
    background: linear-gradient( 135deg, #172033, #242e43 );
    color: #fff;
}

.about-page .company-logo {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    padding: 5px;
    border-radius: 14px;
    background: #fff;
}

    .about-page .company-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

.about-page .company-info-header > div:last-child > span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.about-page .company-info-header h3 {
    margin: 0 0 5px;
    font-size: 25px;
}

.about-page .company-info-header p {
    margin: 0;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}

.about-page .company-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.about-page .info-item {
    padding: 25px 35px;
    border-bottom: 1px solid #edf0f4;
}

    .about-page .info-item:nth-child(odd) {
        border-right: 1px solid #edf0f4;
    }

.about-page .info-label {
    display: block;
    margin-bottom: 8px;
    color: #8a93a3;
    font-size: 12px;
    font-weight: 600;
}

.about-page .info-item strong {
    color: #202a3c;
    font-size: 14px;
}

.about-page .info-item .placeholder {
    color: #a0a7b3;
    font-style: italic;
    font-weight: 500;
}

.about-page .status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .about-page .status i {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #22c55e;
    }


/* =========================================================
   BUSINESS
========================================================= */

.about-page .business-section {
    padding: 110px 0;
    background: #fff;
}

.about-page .business-container {
    width: min(1180px, 88%);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-page .business-content h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.15;
    letter-spacing: -1.3px;
}

    .about-page .business-content h2 span {
        display: block;
        color: #e11d2e;
    }

.about-page .business-content > p {
    max-width: 600px;
    margin: 0 0 35px;
    color: #6f7888;
    font-size: 15px;
    line-height: 1.8;
}

.about-page .business-list {
    display: flex;
    flex-direction: column;
}

.about-page .business-item {
    display: flex;
    gap: 22px;
    padding: 20px 0;
    border-bottom: 1px solid #edf0f4;
}

.about-page .business-number {
    color: #e11d2e;
    font-size: 13px;
    font-weight: 900;
    padding-top: 3px;
}

.about-page .business-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
}

.about-page .business-item p {
    margin: 0;
    color: #7b8492;
    font-size: 13px;
    line-height: 1.6;
}

.about-page .business-image {
    min-height: 540px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    background-image: url("https://www.toyotathanhxuan.vn/wp-content/uploads/2026/01/b4dcef_89a71602596246fcaab2837620878fc6mv2-3.jpeg");
    background-size: cover;
    background-position: center;
}

    .about-page .business-image::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 180deg, rgba(10,15,25,0.05), rgba(10,15,25,0.78) );
    }

.about-page .business-image-overlay {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 35px;
    color: #fff;
}

    .about-page .business-image-overlay span {
        display: block;
        margin-bottom: 10px;
        color: #ff7a85;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 2px;
    }

    .about-page .business-image-overlay strong {
        font-size: 31px;
        line-height: 1.2;
    }


/* =========================================================
   STATS
========================================================= */

.about-page .about-stats {
    background: #172033;
    color: #fff;
    padding: 70px 0;
}

.about-page .stats-container {
    width: min(1100px, 88%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.about-page .stat-item {
    text-align: center;
    padding: 10px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

    .about-page .stat-item:last-child {
        border-right: none;
    }

    .about-page .stat-item strong {
        display: block;
        margin-bottom: 8px;
        color: #fff;
        font-size: 42px;
        line-height: 1;
    }

    .about-page .stat-item span {
        color: rgba(255,255,255,0.6);
        font-size: 12px;
    }


/* =========================================================
   VALUES
========================================================= */

.about-page .values-section {
    padding: 110px 0;
    background: #f7f8fa;
}

.about-page .values-grid {
    width: min(1180px, 88%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-page .value-card {
    position: relative;
    padding: 35px 28px;
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    min-height: 275px;
    transition: 0.3s ease;
}

    .about-page .value-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(20,30,50,0.08);
    }

.about-page .value-number {
    position: absolute;
    right: 22px;
    top: 20px;
    color: #edf0f4;
    font-size: 35px;
    font-weight: 900;
}

.about-page .value-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 12px;
    background: #fff0f1;
    color: #e11d2e;
    font-size: 20px;
    font-weight: 900;
}

.about-page .value-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
}

.about-page .value-card p {
    margin: 0;
    color: #7b8492;
    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   MISSION
========================================================= */

.about-page .mission-section {
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url("https://images.unsplash.com/photo-1473448912268-2022ce9509d8?auto=format&fit=crop&w=2000&q=85");
    background-size: cover;
    background-position: center;
}

.about-page .mission-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(14,20,32,0.95), rgba(14,20,32,0.6), rgba(14,20,32,0.25) );
}

.about-page .mission-content {
    position: relative;
    z-index: 2;
    width: min(1180px, 88%);
    margin: auto;
    color: #fff;
}

    .about-page .mission-content .section-tag {
        color: #ff707c;
    }

    .about-page .mission-content h2 {
        max-width: 650px;
        margin: 0 0 20px;
        font-size: clamp(35px, 5vw, 57px);
        line-height: 1.1;
        letter-spacing: -1.5px;
    }

        .about-page .mission-content h2 span {
            color: #ff6571;
        }

    .about-page .mission-content p {
        max-width: 650px;
        margin: 0;
        color: rgba(255,255,255,0.72);
        font-size: 15px;
        line-height: 1.8;
    }

.about-page .mission-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 30px;
    padding: 14px 22px;
    color: #fff;
    background: #e11d2e;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

    .about-page .mission-button:hover {
        background: #c91425;
        transform: translateY(-2px);
    }

    .about-page .mission-button span {
        font-size: 20px;
    }


/* =========================================================
   CONTACT
========================================================= */

.about-page .contact-section {
    padding: 110px 0;
    background: #fff;
}

.about-page .contact-grid {
    width: min(1000px, 88%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-page .contact-card {
    min-height: 120px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid #e9edf2;
    border-radius: 13px;
    color: #172033;
    transition: 0.25s ease;
}

    .about-page .contact-card:hover {
        border-color: #e11d2e;
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(20,30,50,0.07);
    }

.about-page .contact-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #e11d2e;
    background: #fff0f1;
    font-size: 20px;
}

.about-page .contact-card span {
    display: block;
    margin-bottom: 6px;
    color: #8a93a3;
    font-size: 11px;
    font-weight: 700;
}

.about-page .contact-card strong {
    display: block;
    font-size: 14px;
    line-height: 1.5;
}


/* =========================================================
   FOOTER
========================================================= */

.about-page .about-footer {
    background: #101827;
    color: #fff;
    padding: 40px 0;
}

.about-page .footer-content {
    width: min(1180px, 88%);
    margin: auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.about-page .footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-page .footer-logo {
    width: 48px;
    height: 48px;
    padding: 3px;
    border-radius: 9px;
    background: #fff;
}

    .about-page .footer-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 7px;
    }

.about-page .footer-brand strong {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
}

.about-page .footer-brand p,
.about-page .footer-company p {
    margin: 0;
    color: rgba(255,255,255,0.55);
    font-size: 12px;
}

.about-page .footer-company > span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.about-page .footer-company b {
    color: rgba(255,255,255,0.75);
    font-weight: 600;
}

.about-page .footer-copy {
    text-align: right;
}

    .about-page .footer-copy p {
        margin: 0 0 5px;
        font-size: 12px;
    }

    .about-page .footer-copy span {
        color: rgba(255,255,255,0.4);
        font-size: 11px;
    }


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1000px) {

    .about-page .navbar {
        padding: 0 4%;
    }

    .about-page .nav-links {
        gap: 18px;
    }

    .about-page .intro-container,
    .about-page .business-container {
        gap: 45px;
    }

    .about-page .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page .stats-container {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .about-page .stat-item:nth-child(2) {
        border-right: none;
    }

    .about-page .contact-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

    .about-page .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .about-page .footer-copy {
        text-align: left;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 760px) {

    .about-page .navbar {
        height: auto;
        min-height: 70px;
        padding: 12px 5%;
        flex-wrap: wrap;
        gap: 12px;
    }

    .about-page .brand-name {
        font-size: 17px;
    }

    .about-page .nav-links {
        width: 100%;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        padding-bottom: 5px;
    }

        .about-page .nav-links > a {
            font-size: 12px;
        }

        .about-page .nav-links .login-btn {
            padding: 8px 13px;
        }

    .about-page .about-hero {
        min-height: 470px;
    }

    .about-page .about-hero-content {
        width: 90%;
    }

    .about-page .about-hero h1 {
        font-size: 45px;
    }

    .about-page .about-hero-content > p {
        font-size: 16px;
    }

    .about-page .hero-button {
        width: 100%;
    }

    .about-page .company-intro,
    .about-page .company-info-section,
    .about-page .business-section,
    .about-page .values-section,
    .about-page .contact-section {
        padding: 75px 0;
    }

    .about-page .intro-container,
    .about-page .business-container {
        width: 90%;
        grid-template-columns: 1fr;
    }

    .about-page .intro-image {
        min-height: 360px;
    }

        .about-page .intro-image > img {
            height: 360px;
        }

    .about-page .image-badge {
        right: 15px;
        bottom: 20px;
    }

    .about-page .intro-points {
        grid-template-columns: 1fr;
    }

    .about-page .company-info-container {
        width: 90%;
    }

    .about-page .company-info-header {
        padding: 25px;
    }

    .about-page .company-info-grid {
        grid-template-columns: 1fr;
    }

    .about-page .info-item {
        padding: 20px 25px;
        border-right: none !important;
    }

    .about-page .business-image {
        min-height: 400px;
    }

    .about-page .stats-container {
        width: 90%;
        grid-template-columns: repeat(2, 1fr);
    }

    .about-page .stat-item {
        border-right: none;
    }

        .about-page .stat-item strong {
            font-size: 34px;
        }

    .about-page .values-grid {
        width: 90%;
        grid-template-columns: 1fr;
    }

    .about-page .mission-section {
        min-height: 500px;
    }

    .about-page .mission-content {
        width: 90%;
    }

        .about-page .mission-content h2 {
            font-size: 38px;
        }

    .about-page .contact-grid {
        width: 90%;
    }

    .about-page .footer-content {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-page .footer-copy {
        text-align: left;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .about-page .nav-links {
        gap: 10px;
    }

        .about-page .nav-links > a {
            font-size: 11px;
        }

    .about-page .about-hero h1 {
        font-size: 38px;
    }

    .about-page .about-hero-content > p {
        font-size: 14px;
    }

    .about-page .section-heading h2 {
        font-size: 31px;
    }

    .about-page .intro-content h2,
    .about-page .business-content h2 {
        font-size: 34px;
    }

    .about-page .company-info-header {
        align-items: flex-start;
    }

    .about-page .company-logo {
        width: 58px;
        height: 58px;
        flex-basis: 58px;
    }

    .about-page .company-info-header h3 {
        font-size: 20px;
    }

    .about-page .stat-item strong {
        font-size: 29px;
    }

    .about-page .stat-item span {
        font-size: 11px;
    }

    .about-page .business-image-overlay strong {
        font-size: 26px;
    }
}

```
