* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background: #fff;
    color: #333;
}

.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    max-width: 500px;
}

.hero-text h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.hero-text ul {
    list-style: none;
    margin-bottom: 20px;
}

.hero-text ul li {
    margin-bottom: 15px;
    line-height: 1.5;
}

.hero-text ul li strong {
    font-weight: 600;
}

.btn {
    display: inline-block;
    background-color: #2ecc71; /* Green button */
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #27ae60;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .hero-text h1 {
        font-size: 24px;
    }
}