/* =========================
   BANNER ĐIỆN MẶT TRỜI
========================= */

.solar-hero {
    padding: 70px 0;
    background: #f4f8fc;
}

.solar-hero .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

/* Phần chữ bên trái */
.hero-title {
    display:flex;
    gap: 10px;
}
.hero-content {
    width: 42%;
}

.hero-icon {
    margin-bottom: 15px;
    font-size: 34px;
}

.hero-content h1 {
    margin: 0 0 20px;
    color: #082544;
    font-size: 40px;
    line-height: 1.2;
}

.hero-content p {
    margin: 0 0 28px;
    color: #475569;
    font-size: 18px;
    line-height: 1.7;
}

/* Nhóm nút */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-buttons a {
    display: inline-block;
    padding: 14px 26px;
    color: #082544;
    background: #f5b82e;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.hero-buttons a:last-child {
    color: #ffffff;
    background: #082544;
}

/* Phần ảnh bên phải */
.hero-image {
    width: 68%;
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
}
@media screen and (max-width: 768px) {

    .solar-hero {
        padding: 45px 0;
    }

    .solar-hero .container {
        flex-direction: column;
        gap: 30px;
    }

    .hero-content,
    .hero-image {
        width: 100%;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }
}