/* Support Page */
.support-page {
    width: 100%;
    min-height: 100vh;
}

/* Support Hero */
.support-hero {
    width: 100%;
    position: relative;
}

.support-cover {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.support-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Support Content */
.support-content {
    width: 100%;
    padding: 4rem 2rem;
    background: #ffffff;
}

.support-container {
    max-width: 760px;
    margin: 0 auto;
}

.support-heading {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.support-intro {
    font-size: 1rem;
    color: #111827;
    line-height: 1.55;
    margin-bottom: 1.5rem;
}

/* Support List */
.support-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.support-item {
    background: #f6faff;
    border-radius: 12px;
    padding: 18px 20px;
    border: 1px solid #e6f0ff;
    box-shadow: none;
}

.support-item:hover {
    transform: none;
    box-shadow: none;
}

.support-item-content {
    flex: 1;
    min-width: 0;
}

.support-item-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #111827;
}

.support-item-description {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 10px 0 0;
    line-height: 1.55;
}

.support-item-link {
    display: inline-block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.support-item-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.support-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #c7c7c7;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .support-cover {
        height: 300px;
    }
    .support-content {
        padding: 3rem 1.5rem;
    }
    .support-container {
        max-width: 680px;
    }
    .support-item {
        padding: 16px 18px;
    }
}

@media (max-width: 480px) {
    .support-cover {
        height: 250px;
    }
    .support-content {
        padding: 2rem 1rem;
    }
    .support-item {
        padding: 14px 16px;
    }
    .support-dot {
        width: 9px;
        height: 9px;
    }
}
