/* About Page Styles */
/* 기존 main_2.css의 기본 스타일을 활용 */

.about-page {
    padding: 0;
    background: #fff;
}


/* Page Header */
.about-header {
    padding: 60px 0 80px;
    text-align: center;
}

.about-header .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-title {
    font-size: 64px;
    font-weight: 400;
    font-family: serif;
    color: #000;
    margin: 0;
    line-height: 1.2;
	padding-bottom:30px;
    letter-spacing: -0.02em;
	border-bottom:1px solid #e9e9e9;
}

/* Step Sections */
.about-step-section {
    padding: 100px 0;
}

.about-step-section.step-2 {
    background-color: #f9f9f9;
}

.about-step-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.step-content-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-2 .step-content-wrapper {
    gap: 40px;
    align-items: center;
}

.step-1 .step-visual {
    order: 1;
}

.step-1 .step-text {
    order: 2;
}

.step-2 .step-visual {
    order: 2;
}

.step-2 .step-text {
    order: 1;
}

.step-3 .step-visual {
    order: 1;
}

.step-3 .step-text {
    order: 2;
}

.step-visual {
    flex: 0 0 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon {
    width: 200px;
    height: 200px;
    color: #333;
}

.step-icon svg {
    width: 100%;
    height: 100%;
}

.step-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.step-2 .step-visual {
    flex: 0 0 400px;
}

.step-2 .step-icon {
    width: 100%;
    height: auto;
    max-width: 300px;
}

.step-text {
    flex: 1;
}

.step-title {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin: 0 0 30px;
    line-height: 1.3;
}

.step-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 20px;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.step-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.step-list li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
    font-size: 20px;
}

/* Showroom Section */
.about-showroom-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.about-showroom-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.showroom-content-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.showroom-text {
    flex: 1;
}

.showroom-title {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin: 0 0 30px;
    line-height: 1.3;
}

.showroom-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.showroom-image {
    flex: 0 0 500px;
}

.showroom-image-placeholder {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #999;
    font-size: 14px;
}

/* Partners Section */
.about-partners-section {
    padding: 100px 0;
}

.about-partners-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-title {
    font-size: 32px;
    font-weight: 600;
    color: #000;
    margin: 0 0 20px;
    text-align: center;
    line-height: 1.3;
}

.partners-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 60px;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-item {
    text-align: center;
}

.partner-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-icon svg {
    width: 100%;
    height: 100%;
}

.partner-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

/* CTA Section */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
}

.about-cta-section .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.3;
}

.cta-description {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0 0 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn-primary {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

.cta-btn-primary:hover {
    background: #c19b2e;
    border-color: #c19b2e;
    color: #000;
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #d4af37;
}

.cta-btn-secondary:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

/* 반응형 디자인 */
@media (max-width: 1199px) {
    .about-title {
        font-size: 56px;
    }
    
    .step-content-wrapper {
        gap: 60px;
    }
    
    .step-2 .step-content-wrapper {
        gap: 30px;
    }
    
    .step-visual {
        flex: 0 0 250px;
    }
    
    .step-2 .step-visual {
        flex: 0 0 350px;
    }
    
    .step-icon {
        width: 180px;
        height: 180px;
    }
    
    .step-2 .step-icon {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
    
    .showroom-content-wrapper {
        gap: 60px;
    }
    
    .showroom-image {
        flex: 0 0 400px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .about-title {
        font-size: 48px;
    }
    
    .about-step-section {
        padding: 80px 0;
    }
    
    .step-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-1 .step-visual,
    .step-2 .step-visual,
    .step-3 .step-visual {
        order: 1;
    }
    
    .step-1 .step-text,
    .step-2 .step-text,
    .step-3 .step-text {
        order: 2;
    }
    
    .step-visual {
        flex: 1;
        width: 100%;
    }
    
    .step-icon {
        width: 150px;
        height: 150px;
    }
    
    .step-2 .step-icon {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
    
    .step-title {
        font-size: 28px;
    }
    
    .showroom-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .showroom-image {
        flex: 1;
        width: 100%;
    }
    
    .showroom-image-placeholder {
        height: 300px;
    }
    
    .showroom-title {
        font-size: 28px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .about-header {
        padding: 40px 0 60px;
    }
    
    .about-title {
        font-size: 36px;
    }
    
    .about-step-section {
        padding: 60px 0;
    }
    
    .step-content-wrapper {
        gap: 30px;
    }
    
    .step-icon {
        width: 120px;
        height: 120px;
    }
    
    .step-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .step-description {
        font-size: 15px;
    }
    
    .step-list li {
        font-size: 15px;
    }
    
    .about-showroom-section {
        padding: 60px 0;
    }
    
    .showroom-title {
        font-size: 24px;
    }
    
    .showroom-description {
        font-size: 15px;
    }
    
    .showroom-image-placeholder {
        height: 250px;
    }
    
    .about-partners-section {
        padding: 60px 0;
    }
    
    .partners-title {
        font-size: 28px;
    }
    
    .partners-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

