/* ==========================================================================
   Support Page
   ========================================================================== */
.support-hero {
    padding: 80px 0;
    background: var(--color-light);
    text-align: center;
}
.support-page-title {
    margin-bottom: 20px;
}
.support-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.support-cards-section {
    padding: 60px 0;
}
.support-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.support-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eaeaea;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.support-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}
.support-card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-primary);
}
.support-card-icon svg {
    width: 30px;
    height: 30px;
}
.support-card-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--color-dark);
}
.support-card-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}
.support-card-btn {
    margin-top: auto;
}

