        .company-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            font-family: 'Malgun Gothic', dotum, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .company-hero {
            background: linear-gradient(135deg, #22335c 0%, #bfa14a 100%);
            color: white;
            padding: 80px 40px;
            text-align: center;
            border-radius: 15px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .company-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }
        
        .company-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .company-hero p {
            font-size: 1.3rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }
        
        .company-section {
            margin-bottom: 80px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #22335c;
            margin-bottom: 15px;
            position: relative;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #22335c, #bfa14a);
            border-radius: 2px;
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: #666;
        }
        
        .company-overview {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .overview-text h3 {
            font-size: 1.6rem;
            color: #22335c;
            margin-bottom: 25px;
        }
        
        .overview-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
        }
        
        .overview-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }
        
        .stat-item {
            text-align: center;
            padding: 30px 20px;
            background: #f8f9fa;
            border-radius: 15px;
            border-left: 5px solid #bfa14a;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #22335c;
            display: block;
        }
        
        .stat-label {
            font-size: 1rem;
            color: #666;
            margin-top: 10px;
        }
        
        .vision-mission {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .vision-card, .mission-card {
            padding: 50px 40px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .vision-card {
            background: linear-gradient(135deg, #22335c 0%, #34495e 100%);
            color: white;
        }
        
        .mission-card {
            background: linear-gradient(135deg, #bfa14a 0%, #f39c12 100%);
            color: white;
        }
        
        .vision-card::before, .mission-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .vision-card h3, .mission-card h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .vision-card p, .mission-card p {
            font-size: 1.1rem;
            line-height: 1.7;
            position: relative;
            z-index: 2;
        }
        
        .core-values {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .value-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid #bfa14a;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, #22335c, #bfa14a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
        }
        
        .value-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .value-card h4 {
            font-size: 1.3rem;
            color: #22335c;
            margin-bottom: 15px;
        }
        
        .value-card p {
            color: #666;
            line-height: 1.6;
        }
        
        .timeline {
            position: relative;
            padding: 40px 0;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #22335c, #bfa14a);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 60px;
            width: 45%;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
            text-align: right;
        }
        
        .timeline-item:nth-child(even) {
            left: 55%;
            text-align: left;
        }
        
        .timeline-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .timeline-item:nth-child(odd) .timeline-content::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 30px;
            width: 0;
            height: 0;
            border-left: 15px solid white;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
        }
        
        .timeline-item:nth-child(even) .timeline-content::after {
            content: '';
            position: absolute;
            left: -15px;
            top: 30px;
            width: 0;
            height: 0;
            border-right: 15px solid white;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
        }
        
        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 30px;
            width: 20px;
            height: 20px;
            background: #bfa14a;
            border: 4px solid white;
            border-radius: 50%;
            transform: translateX(-50%);
            box-shadow: 0 0 0 4px #22335c;
        }
        
        .timeline-year {
            font-size: 1.2rem;
            font-weight: 700;
            color: #22335c;
            margin-bottom: 10px;
        }
        
        .timeline-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .timeline-desc {
            color: #666;
            line-height: 1.6;
        }
        
        .organization {
            background: #f8f9fa;
            padding: 60px 40px;
            border-radius: 20px;
        }
        
        .org-chart {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }
        
        .org-level {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .org-position {
            background: white;
            padding: 20px 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            min-width: 150px;
            border-top: 3px solid #bfa14a;
        }
        
        .org-position.ceo {
            background: linear-gradient(135deg, #22335c, #34495e);
            color: white;
            border-top-color: #bfa14a;
        }
        
        .org-position h4 {
            font-size: 1rem;
            margin-bottom: 5px;
        }
        
        .org-position p {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .contact-info {
            background: linear-gradient(135deg, #22335c 0%, #bfa14a 100%);
            color: white;
            padding: 60px 40px;
            border-radius: 20px;
            text-align: center;
        }
        
        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 30px;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        
        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 30px 20px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .contact-item h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        
        .contact-item h4 i {
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .contact-item p {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        @media (max-width: 768px) {
            .company-hero h1 {
                font-size: 2.5rem;
            }
            
            .company-overview {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .vision-mission {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .core-values {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .timeline::before {
                left: 20px;
            }
            
            .timeline-item {
                width: 100%;
                left: 0 !important;
                text-align: left !important;
                padding-left: 50px;
            }
            
            .timeline-item:nth-child(odd) .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                left: -15px;
                right: auto;
                border-right: 15px solid white;
                border-left: none;
            }
            
            .timeline-dot {
                left: 20px;
            } 
            
            .org-level {
                flex-direction: column;
                align-items: center;
            }
        }
		
		
        .service-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            font-family: 'Malgun Gothic', dotum, sans-serif;
            line-height: 1.6;
            color: #333;
        }
        
        .service-hero {
            background: linear-gradient(135deg, #22335c 0%, #bfa14a 100%);
            color: white;
            padding: 80px 40px;
            text-align: center;
            border-radius: 15px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .service-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }
        
        .service-hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .service-hero p {
            font-size: 1.3rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }
        
        .service-intro {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .service-intro h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #22335c;
            margin-bottom: 20px;
        }
        
        .service-intro p {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .service-card-image {
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .service-card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(34, 51, 92, 0.7), rgba(191, 161, 74, 0.7));
        }
        
        .service-card-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #22335c;
            z-index: 2;
        }
        
        .service-card-content {
            padding: 40px 30px;
        }
        
        .service-card h3 {
            font-size: 1.8rem;
            color: #22335c;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .service-card p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .service-features li {
            padding: 8px 0;
            color: #555;
            position: relative;
            padding-left: 25px;
        }
        
        .service-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #bfa14a;
        }
        
        .service-process {
            background: #f8f9fa;
            padding: 80px 40px;
            border-radius: 20px;
            margin-bottom: 80px;
        }
        
        .process-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .process-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #22335c;
            margin-bottom: 15px;
        }
        
        .process-title p {
            font-size: 1.1rem;
            color: #666;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -15px;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #22335c, #bfa14a);
        }
        
        .process-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #22335c, #bfa14a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin: 0 auto 20px;
        }
        
        .process-step h4 {
            font-size: 1.2rem;
            color: #22335c;
            margin-bottom: 10px;
        }
        
        .process-step p {
            color: #666;
            font-size: 0.95rem;
        }
        
        .service-cta {
            background: linear-gradient(135deg, #22335c 0%, #bfa14a 100%);
            color: white;
            padding: 60px 40px;
            border-radius: 20px;
            text-align: center;
        }
        
        .service-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .service-cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .cta-btn {
            display: inline-block;
            padding: 15px 30px;
            background: rgba(255,255,255,0.2);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid rgba(255,255,255,0.3);
        }
        
        .cta-btn:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
        }
        
        .cta-btn.primary {
            background: white;
            color: #22335c;
        }
        
        .cta-btn.primary:hover {
            background: #f8f9fa;
            color: #22335c;
        }
        
        @media (max-width: 768px) {
            .service-hero h1 {
                font-size: 2.5rem;
            }
            
            .service-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-btn {
                width: 200px;
            }
        }		
		
		