* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

main {
    text-align: center;
    max-width: 600px;
    width: 100%;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

header .logo {
    max-width: 70%;
    height: auto;
    margin-bottom: 20px;
    margin-top: 30px;
}
.content h1 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.5;
}

.site-button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.site-button:hover {
    background-color: #0056b3;
}

footer {
    margin-top: 50px;
}

.whatsapp-icon {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

@media (max-width: 600px) {
    main {
        padding: 15px;
    }

    .content h1 {
        font-size: 1.6em;
    }

    .content p {
        font-size: 1em;
    }

    .site-button {
        padding: 10px 18px;
    }

    .whatsapp-icon {
        width: 40px;
        height: 40px;
    }
}
