/* About Page - Article Style */

/* Container */
.about-page {
    background: var(--background-secondary);
    min-height: calc(100vh - 60px);
    padding: 3rem 0;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Header (평범한 텍스트) */
.about-header {
    margin-bottom: 2rem;
}

.about-header h1 {
    font-size: 1.05rem;
    font-weight: normal;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-header .lead {
    font-size: 1.05rem;
    font-weight: normal;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Article */
.about-article {
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text-color);
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.article-section p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.article-section p:last-child {
    margin-bottom: 0;
}

.article-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.article-section a:hover {
    text-decoration: underline;
}

.article-section h2 a {
    color: inherit;
}

.article-section h2 a:hover {
    color: var(--primary-color);
}

/* Highlight Box */
.article-section .highlight-box {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(52, 168, 83, 0.08);
    border-radius: 8px;
    border-left: 3px solid #34a853;
    color: #1e8e3e;
}

.article-section .highlight-box strong {
    color: inherit;
}

/* FAQ Section */
.about-faq {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

.about-faq h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
}

.faq-list {
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--background-secondary);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.faq-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

.faq-more {
    text-align: center;
    margin-top: 2rem;
}

.faq-more a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.faq-more a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* CTA Section */
.about-cta {
    margin-top: 4rem;
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
    border-radius: 12px;
}

.about-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.about-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-cta .btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-cta .btn-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .about-page {
        padding: 2rem 0;
    }

    .about-container {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }

    .about-header {
        margin-bottom: 1.5rem;
    }

    .about-header h1,
    .about-header .lead {
        font-size: 1rem;
    }

    .about-article {
        font-size: 1rem;
    }

    .article-section {
        margin-bottom: 2.5rem;
    }

    .article-section h2 {
        font-size: 1.5rem;
    }

    .about-faq h2 {
        font-size: 1.75rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-item h3 {
        font-size: 1.05rem;
    }

    .about-cta {
        padding: 2rem 1.5rem;
    }

    .about-cta h2 {
        font-size: 1.75rem;
    }

    .about-cta p {
        font-size: 1rem;
    }

    .about-cta .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-page {
        padding: 1.5rem 0;
    }

    .about-container {
        margin: 0 0.75rem;
        padding: 1.5rem 1rem;
    }

    .about-header {
        margin-bottom: 1rem;
    }

    .about-header h1,
    .about-header .lead {
        font-size: 1rem;
    }

    .article-section h2 {
        font-size: 1.35rem;
    }

    .about-cta h2 {
        font-size: 1.5rem;
    }

    .about-cta .btn-cta {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}
