.contact-page {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.page-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.support-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.support-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    border-color: var(--primary);
    background: var(--bg-darker);
}

.support-card:active {
    transform: translateY(0);
}

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

.support-card p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0.5rem 0;
}

.highlight-section {
    animation: highlightPulse 0.5s ease;
}

@keyframes highlightPulse {

    0%,
    100% {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    50% {
        box-shadow: 0 12px 24px rgba(99, 102, 241, 0.4);
    }
}