/* 빠른 도움말 섹션 */
.quick-help-section {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quick-help-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #1e6091;
}

.quick-help-section > p {
    color: #666;
    margin-bottom: 25px;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.help-category-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.help-category-card:hover {
    border-color: #1e6091;
    box-shadow: 0 5px 15px rgba(30, 96, 145, 0.1);
    transform: translateY(-3px);
}

.help-icon {
    font-size: 48px;
    margin-bottom: 15px;
    text-align: center;
}

.help-category-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1e6091;
    text-align: center;
}

.help-category-card > p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

.help-category-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-category-card ul li {
    font-size: 13px;
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s;
}

.help-category-card ul li:hover {
    color: #1e6091;
}

.help-category-card ul li:last-child {
    border-bottom: none;
}

/* 반응형 */
@media (max-width: 768px) {
    .help-categories {
        grid-template-columns: 1fr;
    }
    
    .quick-help-section {
        padding: 20px;
    }
}

