/* Banner Section */
.banner-section {
    padding: 20px 0 20px 0;
    background-color: #F2F4F7;
    align-items: center;
    align-content: center;
}

.banner-container {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 40px;
    align-items: center;
    align-content: center;
    max-width: 1650px;
    margin: 60px auto;
    padding: 0px;
    background-image: url('/assets/banner/ev-charger.png');
    background-repeat: no-repeat;
    background-size: cover;
    /* background-position: right center; */
    border: #E0D2B5 1px solid;
    border-radius: 4px;
}

.banner-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner-badge {
    top: 0;
    left: 0;
    display: inline-block;
    background: linear-gradient(90deg, #13618C 0%, #297B35 100%);
    color: #FFFFFF;
    padding: 12px 16px;
    border-radius: 4px 0 4px 0;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
}

.banner-text {
    padding: 0 60px;
}

.banner-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

.banner-description {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    /* margin: 0; */
    margin-bottom: 25px;
    line-height: 1.6;
}

.banner-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #13618C 0%, #297B35 100%);
    color: #FFFFFF;
    border: none;
    padding: 12px 24px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.banner-button:hover {
    box-shadow: 0 4px 12px rgba(27, 127, 76, 0.3);
    transform: translateY(-2px);
}

.banner-button .arrow-icon {
    font-size: 16px;
}

/* .banner-image {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('/assets/banner/ev-charger.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
} */

/* Responsive Design */
@media (max-width: 768px) {
    .banner-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 40px;
    }

    .banner-title {
        font-size: 24px;
    }

    .banner-image {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .banner-section {
        padding: 40px 0;
    }

    .banner-container {
        padding: 0 30px;
        gap: 20px;
    }

    .banner-title {
        font-size: 20px;
    }

    .banner-description {
        font-size: 13px;
    }

    .banner-image {
        height: 200px;
    }
}
