/* About Us 페이지 스타일 */

/* 메인 섹션 */
.about-section {
    padding: 100px 0;
}

.about-image {
    margin-bottom: 30px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content .main-title {
    font-family: 'Alex Brush', cursive;
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    white-space: nowrap;
}

.about-content .lead {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* 우리의 가치 섹션 */
.values-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

/* 반응형 스타일 */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content .main-title {
        font-size: 2.8rem;
        white-space: normal;
    }
    
    .about-content .lead {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .values-section {
        padding: 60px 0;
    }
    
    .about-content .main-title {
        font-size: 2.5rem;
    }
    
    .about-content .lead {
        font-size: 1.3rem;
    }

    .value-item {
        margin-bottom: 20px;
    }
}

.company-title {
    padding: 8rem 0;
    margin-bottom: 3rem;
}

.company-title .subtitle {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.company-title h1 {
    color: var(--text-color);
    font-size: 3rem;
    margin: 0;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .company-title {
        padding: 6rem 0;
    }
    .company-title h1 {
        font-size: 2.5rem;
    }
} 