/* About Page Styles */

.about-page {
    padding: 60px 0;
}

.about-page .container {
    max-width: 800px;
}

.about-page section {
    margin-bottom: 64px;
}

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

.about-page h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 24px;
}

.about-page p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-page p:last-child {
    margin-bottom: 0;
}

/* Company Overview */
.company-overview {
    text-align: left;
}

/* Company Info Box - 핵심 강조 섹션 */
.company-info-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.company-info-box h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 32px;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.15);
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.info-value {
    color: var(--text-color);
    line-height: 1.6;
}

.info-value a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-value a:hover {
    text-decoration: underline;
}

.address-en {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Business Registration */
.business-registration {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    padding: 32px;
}

.business-registration em {
    color: var(--gray-600);
    font-style: italic;
}

/* Our Products */
.our-products {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.product-card {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 24px;
    margin-top: 24px;
}

.product-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.product-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}

.product-category {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.product-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-links {
    margin-top: 16px;
}

.product-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    transition: transform 0.2s ease;
}

.product-link:hover {
    transform: translateX(4px);
    text-decoration: underline;
}

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

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

    .about-page h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .company-info-box {
        padding: 24px;
    }

    .company-info-box h2 {
        margin-bottom: 24px;
        font-size: 1.35rem;
    }

    .info-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 12px 0;
    }

    .info-label {
        font-size: 0.875rem;
    }

    .info-value {
        font-size: 0.95rem;
    }

    .business-registration {
        padding: 24px;
    }

    .our-products {
        padding: 24px;
    }

    .product-card {
        padding: 20px;
    }

    .product-icon {
        width: 56px;
        height: 56px;
    }
}

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

    .about-page h2 {
        font-size: 1.35rem;
    }

    .company-info-box {
        padding: 20px;
    }

    .info-label {
        font-size: 0.85rem;
    }

    .info-value {
        font-size: 0.9rem;
    }

    .product-icon {
        width: 48px;
        height: 48px;
    }

    .product-info h3 {
        font-size: 1.1rem;
    }
}
