#guide {
    padding-top: 80px;
    background: #F8F9FA;
    min-height: 100vh;
}

.guide-header {
    background: #2097FF;
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.guide-header h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.guide-header p {
    font-size: 18px;
    opacity: 0.9;
}

.guide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.guide-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.guide-section h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    color: #333;
}

/* 기능 카드 스타일 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 24px;
    border-radius: 16px;
    background: #F8F9FA;
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
}

.feature-link {
    color: #2097FF;
    text-decoration: none;
    font-weight: 500;
}

/* FAQ 스타일 */
.faq-category {
    margin-bottom: 32px;
}

.faq-category h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2097FF;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.faq-answer {
    padding: 0 0 20px;
    display: none;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .arrow {
    transform: rotate(180deg);
}

/* 고객 지원 카드 스타일 */
.support-card {
    background: #FFF;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.support-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.support-content p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
}

.support-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #FEE500;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.support-button:hover {
    background: #FDD835;
}

.support-button img {
    width: 24px;
    height: 24px;
    border-radius: 12px;
}

/* 반응형 스타일 */
@media screen and (max-width: 768px) {
    .guide-header {
        padding: 40px 20px;
    }

    .guide-header h1 {
        font-size: 24px;
    }

    .guide-header p {
        font-size: 16px;
    }

    .guide-section {
        padding: 24px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .support-button {
        width: 100%;
        justify-content: center;
    }
} 