/* =====================
   MOBILE FIRST DESIGN
===================== */

.support-page {
    max-width: 100%;
    padding: 24px 16px 40px;
    background: #ffffff;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* HEADER */
.support-header {
    text-align: center;
    margin-bottom: 28px;
}

.support-badge {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.support-header h1 {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin-bottom: 12px;
}

.support-subtitle {
    font-size: 14.5px;
    color: #555;
    line-height: 1.8;
    max-width: 340px;
    margin: 0 auto;
}

/* CARD LIST */
.support-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.support-item {
    background: #ffffff;
    border-radius: 18px;
    padding: 18px 18px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #f2f2f2;
}

/* ICON */
.support-icon {
    width: 42px;
    height: 42px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}

/* TEXT */
.support-text {
    font-size: 14.5px;
    color: #333;
    line-height: 1.75;
}

/* NOTE */
.support-note {
    margin-top: 32px;
    background: #fff8dc;
    border-radius: 18px;
    padding: 20px;
    border-left: 4px solid #FFD700;
}

.support-note h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.support-note p {
    font-size: 14.5px;
    color: #444;
    line-height: 1.7;
}

/* =====================
   TABLETS & DESKTOP
===================== */
@media (min-width: 768px) {
    .support-page {
        max-width: 900px;
        margin: auto;
        padding: 50px;
    }

    .support-header h1 {
        font-size: 36px;
    }

    .support-subtitle {
        max-width: 650px;
        font-size: 16px;
    }

    .support-item {
        display: flex;
        gap: 16px;
        align-items: flex-start;
    }

    .support-icon {
        margin-bottom: 0;
    }
}