.support-container {
    width: 100%;
}

.support-section {
    padding: 2rem 0;
}

.support-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
}

.support-text {
    background: linear-gradient(135deg, rgba(0, 31, 63, 0.85), rgba(0, 20, 40, 0.75));
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.support-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.support-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-item {
    background: rgba(0, 31, 63, 0.6);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
    border: 1px solid var(--border-color);
}

.contact-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

/* Support Form */
.support-form {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    height: fit-content;
}

.support-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.support-form .btn-submit {
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .support-section h1 {
        font-size: 1.75rem;
    }

    .support-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .support-form {
        height: auto;
    }
}
