/* Support Page Styles */

.support-page {
    background: white;
    border-radius: 12px;
    padding: 48px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.support-page h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 16px;
}

.support-page .intro {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.support-page section {
    margin-bottom: 40px;
}

.support-page section:last-child {
    margin-bottom: 0;
}

.support-page h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gray-200);
}

/* Contact Section */
.contact-section {
    margin-bottom: 48px;
}

.contact-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-top: 16px;
}

.contact-card p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.contact-card strong {
    font-weight: 600;
    color: var(--text-color);
    display: inline-block;
    min-width: 140px;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Additional Info Section */
.additional-info ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.additional-info li {
    margin-bottom: 12px;
}

.additional-info li:last-child {
    margin-bottom: 0;
}

.additional-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.additional-info a:hover {
    text-decoration: underline;
    padding-left: 4px;
}

.additional-info a::before {
    content: "→";
    margin-right: 8px;
    color: var(--primary-color);
}

/* Account Deletion Section */
.account-deletion {
    margin-bottom: 48px;
    scroll-margin-top: 80px; /* 앵커 링크 클릭 시 header에 안 가리도록 */
}

.deletion-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 24px;
    margin-top: 16px;
}

.deletion-intro {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}

.deletion-card > div {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.deletion-card > div:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.deletion-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.deletion-card p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--text-color);
}

.deletion-card p:last-child {
    margin-bottom: 0;
}

.deletion-card ul {
    margin: 12px 0 0 0;
    padding-left: 40px;
}

.deletion-card li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: var(--text-color);
}

.deletion-card li:last-child {
    margin-bottom: 0;
}

.deletion-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.deletion-card a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-page {
        padding: 32px 24px;
        margin: 24px auto;
        border-radius: 8px;
    }

    .support-page h1 {
        font-size: 1.75rem;
    }

    .support-page .intro {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .support-page h2 {
        font-size: 1.25rem;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card strong {
        display: block;
        margin-bottom: 4px;
        min-width: auto;
    }

    .deletion-card {
        padding: 20px;
    }

    .deletion-card h3 {
        font-size: 1rem;
    }

    .deletion-card > div {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .support-page {
        padding: 24px 16px;
        margin: 16px auto;
    }

    .support-page h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .support-page .intro {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    .support-page h2 {
        font-size: 1.125rem;
        margin-bottom: 16px;
    }

    .contact-card {
        padding: 16px;
    }

    .deletion-card {
        padding: 16px;
    }

    .deletion-intro {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .deletion-card > div {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .support-page section {
        margin-bottom: 32px;
    }
}
