* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0b0f19;
    color: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #111827;
    border-bottom: 1px solid #1f2937;
}

.logo h2 { color: #ffffff; font-size: 1.6rem; }
.logo span { color: #22c55e; }

.support-badge {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Support Hero Section */
.support-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    flex: 1;
}

.support-card {
    background-color: #111827;
    border: 1px solid #1f2937;
    border-radius: 16px;
    padding: 40px 30px;
    width: 100%;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.care-logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #0b0f19;
    font-size: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.support-card h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.tagline {
    font-size: 1.05rem;
    color: #38bdf8;
    font-weight: 600;
    margin-bottom: 15px;
}

.description {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* 3 Action Buttons Container */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    border: none;
    width: 100%;
}

.support-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.call-btn {
    background-color: #2563eb;
    color: white;
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
}

.expert-btn {
    background-color: #8b5cf6;
    color: white;
}

/* Modal Popup Form */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: #111827;
    margin: 12% auto;
    padding: 30px;
    border: 1px solid #1f2937;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    position: relative;
    color: white;
    text-align: left;
}

.modal-content h2 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.modal-content p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.close-btn {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover { color: white; }

.form-group {
    margin-bottom: 15px;
}

.form-group label { display: block; margin-bottom: 5px; color: #cbd5e1; font-size: 0.9rem; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #0b0f19;
    border: 1px solid #1f2937;
    border-radius: 6px;
    color: white;
    font-size: 0.95rem;
}

.btn-submit {
    width: 100%;
    background-color: #22c55e;
    color: #0b0f19;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 5px;
}

.btn-submit:hover { background-color: #16a34a; }

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111827;
    border-top: 1px solid #1f2937;
    color: #64748b;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media screen and (max-width: 480px) {
    .support-card {
        padding: 25px 20px;
    }
    .support-card h1 {
        font-size: 1.6rem;
    }
}
