body {
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
    background: #FFF7EC;
    color: #222;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.4rem;
    }

    p {
        font-size: 1rem;
    }
}
