body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: #1a1a1a; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    color: #333;
}

.card-container {
    background: #ffffff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    text-align: center;
    width: 85%;
    max-width: 350px;
}

.logo {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin-bottom: 10px;
}

h1 { margin: 10px 0 5px; font-size: 1.6rem; font-weight: 800; color: #333; }

/* Updated to match the Neo Blue */
.company { 
    color: #48a9e0; 
    font-size: 1.1rem; 
    margin-bottom: 15px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: bold;
}

.services {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.4;
}

.btn {
    display: block;
    padding: 14px;
    margin: 12px 0;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    background: #f0f0f0;
    color: #333;
    transition: transform 0.2s;
}

/* Primary Button updated to Neo Blue */
.primary-btn {
    background: #48a9e0;
    color: #fff;
    box-shadow: 0 4px 15px rgba(72, 169, 224, 0.3);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.btn:active { transform: scale(0.98); }

.footer { margin-top: 20px; font-size: 0.75rem; color: #999; border-top: 1px solid #eee; padding-top: 15px; }