/* 기업 소개 페이지 전용 스타일 */
/* 소개 섹션 스타일 */
.about-section {
    padding: 5rem 0;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.section-title:after {
    content: '';
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    position: absolute;
    left: 0;
    bottom: -1rem;
}

.about-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 미션 및 비전 섹션 */
.about-page .bg-light {
    background-color: var(--light-gray) !important;
}

/* 타임라인 섹션 */
.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    margin-left: -1.5px;
    content: '';
    background-color: #e9ecef;
}

.timeline > li {
    position: relative;
    min-height: 50px;
    margin-bottom: 50px;
}

.timeline > li:after, .timeline > li:before {
    display: table;
    content: ' ';
}

.timeline > li:after {
    clear: both;
}

.timeline > li .timeline-panel {
    position: relative;
    float: right;
    width: calc(100% - 90px);
    padding: 20px;
    border-radius: 8px;
    background-color: #f8f9fa;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.timeline > li .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline > li .timeline-image {
    position: absolute;
    z-index: 10;
    left: 0;
    width: 80px;
    height: 80px;
    margin-left: 0;
    text-align: center;
    color: white;
    border-radius: 100%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.timeline > li.timeline-inverted > .timeline-panel {
    float: right;
}

.timeline > li.timeline-inverted > .timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline > li:last-child {
    margin-bottom: 0;
}

.timeline .timeline-heading h4 {
    margin-top: 0;
    color: inherit;
}

.timeline .timeline-heading h4.subheading {
    text-transform: none;
}

.timeline .timeline-body > ul,
.timeline .timeline-body > p {
    margin-bottom: 0;
}

/* 카운터 섹션 */
.counter-section {
    padding: 5rem 0;
    background-color: var(--light-gray);
}

.counter-box {
    text-align: center;
    padding: 2rem;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.counter-label {
    font-size: 1.2rem;
    color: var(--dark);
}

/* 핵심 가치 카드 */
.value-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
    padding: 30px;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

/* 팀 멤버 섹션 */
.team-member {
    margin-bottom: 3rem;
    text-align: center;
}

.team-member img {
    width: 14rem;
    height: 14rem;
    border: 0.5rem solid rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    object-fit: cover;
}

.team-member h4 {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* 기업소개 페이지 후기 카드 */
.about-page .testimonial-card {
    padding: 30px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin: 15px;
}

/* 기업소개 페이지 FAQ */
.about-page .accordion-button:not(.collapsed) {
    background-color: var(--light-gray);
    color: var(--primary);
}

/* 반응형 조정 (기업소개 페이지 전용) */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 3rem;
    }

    .counter-number {
        font-size: 2.5rem;
    }

    .timeline:before {
        left: 30px;
    }

    .timeline > li .timeline-image {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .timeline > li .timeline-panel {
        width: calc(100% - 70px);
    }
}