body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 700px;
    width: 100%;
    padding: 40px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 25px;
}

h1 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1c1e21;
}

p {
    font-size: 1.15em;
    line-height: 1.7;
    font-weight: 300;
}

a {
    color: #0073b1;
    text-decoration: none;
    font-weight: 400;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 1em;
    }
}
