        /* 회사소개 페이지 전용 스타일 */
        .about-page-hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../img/about_new_bg.jpg');
            background-size: cover;
            background-position: center;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        
        .page-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .page-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-nav {
            position: sticky;
            top: 45px;
            background-color: #f8f9fa;
            z-index: 100;
            width: 100%;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            padding: 1rem 0;
            transition: top 0.3s;
        }
                
        .about-nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .about-nav li {
            margin: 0 1rem;
        }
        
        .about-nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .about-nav a:hover, .about-nav a.active {
            background-color: #0056b3;
            color: white;
        }
        
        .about-section {
            padding: 4rem 0;
        }
        
        .about-section:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background-color: #0056b3;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .company-overview {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }
        
        .company-overview-content {
            flex: 1;
            min-width: 300px;
        }
        
        .company-overview-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .company-overview-image img {
            max-width: 100%;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .vision-mission {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }
        
        .vision-box, .mission-box {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            text-align: center;
        }
        
        .vision-box h3, .mission-box h3 {
            margin-bottom: 1rem;
            color: #0056b3;
        }
        
        .core-values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .value-card {
            background-color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
        }
        
        .value-icon {
            font-size: 2.5rem;
            color: #0056b3;
            margin-bottom: 1rem;
        }
        
        .value-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .history-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline-item {
            padding: 2rem 0;
            position: relative;
        }
        
        .timeline-item:before {
            content: '';
            position: absolute;
            width: 2px;
            background-color: #0056b3;
            top: 0;
            bottom: 0;
            left: 40px;
        }
        
        .timeline-date {
            position: absolute;
            width: 80px;
            text-align: right;
            left: -50px;
            color: #0056b3;
            font-weight: bold;
        }
        
        .timeline-content {
            margin-left: 70px;
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .timeline-content:before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: white;
            border: 4px solid #0056b3;
            border-radius: 50%;
            left: -60px;
            top: 50%;
            transform: translateY(-50%);
        }
        
        .organization-chart {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .org-level {
            margin-bottom: 2rem;
        }
        
        .org-box {
            display: inline-block;
            background-color: #0056b3;
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            margin: 0.5rem;
            min-width: 150px;
        }
        
        .org-box.subordinate {
            background-color: #4682B4;
        }
        
        .org-box.team {
            background-color: #5F9EA0;
        }
        
        .org-arrows {
            font-size: 1.5rem;
            color: #0056b3;
            margin: 0.5rem 0;
        }
        
        .teams {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        
        @media (max-width: 768px) {
            .about-nav {
                overflow-x: auto;
            }
            
            .about-nav ul {
                padding: 0 15px;
                justify-content: flex-start;
                flex-wrap: nowrap;
            }
            
            .about-nav li {
                white-space: nowrap;
            }


            .timeline-date {
                position: static;
                text-align: left;
                margin-bottom: 0.5rem;
            }
            
            .timeline-content {
                margin-left: 30px;
            }
            
            .timeline-item:before {
                left: 15px;
            }
            
            .timeline-content:before {
                left: -22px;
            }
        }
