/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    background: url("https://repo.local-car-finder.com/client/con-paulos-chevrolet/images/2025-homepage-mh-ev-tax-credit.jpg") no-repeat center center;
    background-size: cover;
    color: white;
    padding: 4rem 0;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: -1; 
}

.hero-content {
    max-width:600px;
}

.hero-title {
    font-size: 1.5rem; 
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.3;
}

.highlight {
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}


/* Option Sections */
.option-section {
    padding: 4rem 0;
}

.lease-section {
    background: white;
}

.buy-section {
    background: #f2f2f2;
}

.buy-it {
    background: #fff!important;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3035;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #9ca3a8;
    margin-bottom: 30px;
}

.benefits-checklist {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.5rem;
}

.benefits-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefits-checklist strong {
    font-size: 1.5rem;
    color: #2d3035;
    display: block;
    margin-bottom: 0.25rem;
}

.benefits-checklist div {
    color: #9ca3a8;
    line-height: 1.6;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.qualified-vehicles-checklist {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
}

.qualified-vehicles-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.qualified-vehicles-checklist strong {
    font-size: 1.5rem;
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
}

.qualified-vehicles-checklist div {
    color: #9ca3a8;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 48, 53, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(45, 48, 53, 0.15);
}

.benefit-icon {
    font-size: 4rem;
}

.benefit-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2d3035;
    margin-bottom: 1rem;
}

.benefit-description {
    color: #9ca3a8;
    line-height: 1.6;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

/* CTA Section */
.cta-section-2 {
    background: #f2f2f2;
    color: #000;
    padding: 4rem 0;
}

.cta-section {
    background: #262626;
    color: white;
    padding: 4rem 0;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-image img {
    width: 100%;
    height: auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.5rem;
    line-height: 1.5;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    background-color: #e82c2a;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.cta-button:hover {
    background-color: #c92422;
    transform: translateY(-2px);
}

.cta-button-secondary {
    background-color: #007bff;
}

.cta-button-secondary:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column; 
        align-items: center;
    }

    .cta-button {
        width: 100%; 
    }

    .cta-section,
    .option-section{
        padding: 2rem 0;
    }
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .contact-grid
    {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-grid,
    .content-grid{
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cta-content,
    .image-container {
        margin-top: 0;
    }

    .image-container img,
    .cta-image img {
        margin-bottom: 1rem;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 3rem 0;
    }

    .option-section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* .benefit-card {
        padding: 1.5rem;
    } */
}



#content-description{
    display: none!important;
}

.contentWrapper {
    padding-bottom: 0!important;
}

.header{
    display: none!important;
}