body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #ff8c00;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: white;
}

/* ---------- DESKTOP IMAGE (default) ---------- */
.hero img {
    max-width: 380px;          /* your preferred desktop size */
    width: auto;               /* keep natural width up to max */
    height: auto;
    margin-right: 20px;        /* space between image & text */
    display: block;
}
/* -------------------------------------------- */

.hero-text {
    max-width: 600px;
}

.benefits {
    padding: 40px;
    background-color: #fff;
}

.benefits ul {
    list-style-type: disc;
    padding-left: 20px;
}

.cta {
    text-align: center;
    padding: 40px;
    background-color: #ff8c00;
    color: white;
}

.cta button {
    background-color: white;
    color: #ff8c00;
    border: 2px solid white;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

/* ---------- MOBILE LAYOUT ---------- */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .hero img {
        max-width: 100%;       /* never overflow */
        width: 100%;           /* fill the column */
        height: auto;
        margin-right: 0;       /* remove side spacing */
        margin-bottom: 20px;   /* space under the image */
    }
}

