/* Destek sayfası genel düzeni */
.support-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

/* Üst karşılama mesajı */
.support-welcome {
    background: #5a5a5a;
    color: white;
    font-size: 16px;
    padding: 14px 18px;
    border-radius: 10px;
}

/* Orta metinler */
.support-info {
    text-align: center;
    font-size: 15px;
    color: #333;
}

/* Buton grubu */
.support-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.support-btn {
    background: #e87c2d;
    color: white;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.support-btn:hover {
    background: #d46f25;
}

/* Alt başlık */
.support-subtitle {
    text-align: center;
    font-size: 15px;
    color: #444;
    margin-top: 10px;
}

/* Kart grid yapısı */
.support-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.support-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    background: #f8f8f8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.support-card h4 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 6px;
    color: #444;
}

.support-card p {
    font-size: 13px;
    color: #666;
    flex-grow: 1;
    margin-bottom: 12px;
}

.support-card button {
    background: #e87c2d;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    align-self: flex-end;
}

.support-card button:hover {
    background: #d46f25;
}
