/* ===========================
   PAGE HEADER
=========================== */

.page-header {
    scroll-margin-top: 90px;
    background: linear-gradient(135deg, #1F1F1F 0%, #343434 100%);
    color: #fff;
    padding: 90px 0;
    text-align: center;
    border-bottom: 4px solid #C7A548;
}

    .page-header h1 {
        font-weight: 700;
    }

    .page-header p {
        color: #d6d6d6;
    }

/* ===========================
   ABOUT SECTION
=========================== */

.about-section {
    background: #f8f8f8 url("../photo/Photo1.png") no-repeat;
    background-size: cover;
    background-position: 90% center;
    padding: 80px 0;
} 

.about-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

/* ===========================
   TITLES
=========================== */

.section-title {
    color: #C7A548;
    font-weight: 700;
}

.gold-divider {
    width: 80px;
    height: 4px;
    background: #C7A548;
    border-radius: 999px;
    margin-bottom: 30px;
}

/* ===========================
   ADVANTAGE CARD
=========================== */

.adv-card {
    background: #fff;
    border: none;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    height: 100%;
    transition: .3s;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

    .adv-card:hover {
        transform: translateY(-8px);
    }

.adv-icon {
    font-size: 40px;
    color: #C7A548;
    margin-bottom: 15px;
}

.adv-title {
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 10px;
}

.adv-text {
    color: #666;
    line-height: 1.7;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:768px) {

    .page-header {
        padding: 60px 20px;
    }

    .about-card {
        padding: 30px;
    }
}

/* Dealership Section */

.dealership-logo {

    max-height: 90px;
    width: auto;
    object-fit: contain;

}


.plus-symbol {

    font-size: 40px;
    font-weight: bold;
    color: #c9a227;

}


.dealership-highlight {

    background: linear-gradient(
        135deg,
        #111,
        #222
    );

    color: #fff;

    border-left: 5px solid #c9a227;

    padding: 18px 25px;

    margin: 30px 0;

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 1.05rem;

    font-weight: 500;

}


.dealership-highlight i {

    color: #c9a227;

    font-size: 28px;

}

.dealership-list li {

    margin-bottom: 15px;

    font-size: 1.05rem;

}


.dealership-list li::first-letter {

    color: #c9a227;

}