/* 회사 소개 페이지 스타일 */
.page-header {
    background: linear-gradient(120deg, #1e2761 0%, #2541b2 45%, #3f77e5 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDAwIDEyMDAiPjxyZWN0IGZpbGw9Im5vbmUiIHdpZHRoPSIyMDAwIiBoZWlnaHQ9IjEyMDAiLz48cGF0aCBmaWxsPSIjZmZmZmZmIiBmaWxsLW9wYWNpdHk9IjAuMTUiIGQ9Ik0yMDAwLDEyMDBWMEgwdjEyMDBIMjAwMHpNMCwwYzUwMCwyNTAgMTAwMCwyNTAgMTUwMCwxMDBzNTAwLDIwMCA1MDAsMzAwVjEyMDBIMFYweiIvPjxwYXRoIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSIgZD0iTTAsNDAwYzI1MC0xMTAgNTAwLTEwMCA3NTAsNTBzNTAwLDIwMCA3NTAsMjAwczUwMC0yMDAgNTAwLTEwMHYxNTBIMFY0MDB6Ii8+PC9zdmc+');
    background-position: center;
    background-size: cover;
    mix-blend-mode: soft-light;
    opacity: 0.4;
}

.company-info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -34px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.2);
}

.timeline-date {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.timeline-content {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: rgba(var(--primary-rgb), 0.1);
    color: var(--primary-color);
}

.team-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container {
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

@media print {
    header, footer, nav, .bg-primary, #pdf-download-btn, #print-btn {
        display: none !important;
    }
    body {
        font-size: 12pt;
        color: #000;
        background-color: #fff;
    }
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    section {
        page-break-inside: avoid;
        margin-bottom: 20px;
    }
    img {
        max-width: 100% !important;
    }
    a {
        text-decoration: none !important;
        color: #000 !important;
    }
    .card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
    .text-primary {
        color: #000 !important;
    }
    .bg-light {
        background-color: #fff !important;
    }
}

.card-img-container {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
