* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f7faff;
    color: #1e293b;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    min-height: 100vh;
}

.hero-content {
    max-width: 45%;
}

    .hero-content h1 {
        font-size: 3rem;
        font-weight: 700;
        color: #0f172a;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1.2rem;
        color: #475569;
        margin-bottom: 30px;
    }

.btn {
    display: inline-block;
    background-color: #2563eb;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

    .btn:hover {
        background-color: #1d4ed8;
    }

.hero-image img {
    max-width: 500px;
    width: 100%;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        margin-top: 40px;
    }
}
