/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #1e3c72, #2a5298);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container */
.container {
    text-align: center;
    max-width: 600px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Header */
header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #f7c03e;
}

header span {
    color: #50fa7b;
    font-weight: 700;
}

/* Main Content */
main p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 20px 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #25d366;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.8);
}

/* Footer */
footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #ccc;
}
