* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f3f5f7;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    background-color: #ffffff;
    padding: 80px 60px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 26.4px;
}

.contact {
    margin-top: 20px;
}

.contact strong {
    font-size: 1.1rem;
}

.contact p {
    margin: 5px 0;
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    p, .contact p {
        font-size: 0.9rem;
    }

    .contact strong {
        font-size: 1rem;
    }
}
