.support-section {
    font-family: 'Poppins', sans-serif;
}

.support-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.support-card-header {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 25px;
    text-align: center;
}

.support-card-header h3 {
    margin: 0;
    font-size: 1.4em;
    font-weight: 600;
}

.support-card-body {
    padding: 30px;
}

.support-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4CAF50;
    font-size: 28px;
    box-shadow: 
        inset 6px 6px 12px #e0e0e0,
        inset -6px -6px 12px #ffffff,
        0 4px 15px rgba(76, 175, 80, 0.2);
}

.support-btn {
    background: linear-gradient(145deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    color: white;
    text-decoration: none;
}

.support-btn-secondary {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.support-btn-secondary:hover {
    background: #4CAF50;
    color: white;
    text-decoration: none;
}

.support-intro {
    text-align: center;
    margin-bottom: 50px;
}

.support-intro h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 2.2em;
}

.support-intro p {
    color: #666;
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.support-stats {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
}

.support-stats h4 {
    color: #4CAF50;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.alert-success {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #4CAF50;
}

.alert-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #f44336;
}

/* Responsive */
@media (max-width: 768px) {
    .support-intro h2 {
        font-size: 1.8em;
    }
    
    .support-card-body {
        padding: 20px;
    }
    
    .support-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}