body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1d1e26, #14151b);
    font-family: "Arial", sans-serif;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 20px;
}

.title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 20px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.contact-block {
    margin-bottom: 30px;
}

.label {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.phone, .whatsapp, .email {
    display: block;
    margin: 10px 0;
    font-size: 20px;
    text-decoration: none;
    color: #4cd4ff;
    transition: 0.2s;
}

.phone:hover,
.whatsapp:hover,
.email:hover {
    color: #7ae8ff;
}

.whatsapp {
    color: #4fff7b;
}

.whatsapp:hover {
    color: #87ffae;
}

footer {
    margin-top: 40px;
    opacity: 0.6;
    font-size: 14px;
}
