        /* [Inherited CSS from ethics.html] */
        :root {
            --primary-color: #006633;
            --heading-color: #333;
            --background-color: #f9f9f9;
        }

        body {
            font-family: 'Pretendard', sans-serif;
            margin: 0;
            padding: 0;
            color: #333;
            line-height: 1.6;
        }

        ul { list-style: none; padding: 0; margin: 0; }
        a { text-decoration: none; color: inherit; }


        .hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); }
        .hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 20px; }
        .hero-badge { display: inline-block; background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.4); padding: 8px 16px; border-radius: 30px; font-weight: 600; margin-bottom: 24px; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }
        .hero-title { font-size: 3rem; font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; word-break: keep-all; }
        .hero-subtitle { font-size: 1.1rem; font-weight: 400; opacity: 0.95; max-width: 700px; margin: 0 auto; line-height: 1.7; word-break: keep-all; }

        /* Chapter Sections */
        .chapter-section { display: flex; padding: 100px 5%; border-bottom: 1px solid #eee; background-color: var(--background-color); }
        .chapter-section:nth-child(even) { background-color: white; }
        .chapter-sidebar { flex: 0 0 260px; position: relative; margin-right: 60px; }
        .sticky-wrapper { position: sticky; top: 150px; text-align: left; }
        .chapter-num { display: block; font-size: 0.9rem; font-weight: 700; color: var(--primary-color); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
        .chapter-title { font-size: 2.2rem; font-weight: 900; line-height: 1.1; color: var(--heading-color); margin-bottom: 20px; word-break: keep-all; }
        .chapter-subtitle { color: #666; font-size: 1.05rem; line-height: 1.5; font-weight: 500; word-break: keep-all; }
        .chapter-main { flex: 1; max-width: 900px; border-left: 1px solid #eee; padding-left: 60px; }

        /* Text & Components */
        .narrative-text { font-size: 1.1rem; line-height: 1.8; color: #444; margin-bottom: 40px; word-break: keep-all; text-align: justify; }
        .narrative-text strong { color: #000; font-weight: 700; background: linear-gradient(to top, rgba(0, 102, 51, 0.1) 40%, transparent 40%); }

        .feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
        .feature-card { background: white; padding: 30px; border-radius: 16px; border: 1px solid #eee; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
        .feature-card:hover { transform: translateY(-5px); border-color: var(--primary-color); }
        .feature-icon { width: 50px; height: 50px; background: rgba(0, 102, 51, 0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-size: 1.5rem; margin-bottom: 20px; }
        .feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: #222; }
        .feature-card p { font-size: 0.95rem; color: #666; line-height: 1.6; word-break: keep-all; }

        /* License Box (Modified for Certification Levels) */
        .license-box { background: white; border: 1px solid #e0e0e0; border-radius: 20px; padding: 40px; margin-bottom: 30px; position: relative; overflow: hidden; transition: transform 0.3s ease; }
        .license-box:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.08); border-color: var(--primary-color); }
        .license-header { display: flex; align-items: center; margin-bottom: 25px; border-bottom: 2px solid #f0f0f0; padding-bottom: 20px; }
        .license-icon { width: 70px; height: 70px; background: var(--primary-color); color: white; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-right: 25px; flex-shrink: 0; }
        .license-title-group h3 { font-size: 1.6rem; font-weight: 800; color: #222; margin-bottom: 5px; }
        .license-badge { display: inline-block; background: #f0fdf4; color: var(--primary-color); border: 1px solid #dcfce7; padding: 4px 10px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }
        .license-desc { font-size: 1.05rem; color: #555; line-height: 1.7; margin-bottom: 25px; }
        .license-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; background: #f9f9f9; padding: 20px; border-radius: 12px; }
        .license-detail-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: #444; }
        .license-detail-item i { color: var(--primary-color); }

        /* Dark Box (Used for Contact) */
        .academy-box {
            background: linear-gradient(135deg, #243B55 0%, #141E30 100%);
            border-radius: 20px;
            padding: 40px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        .academy-box::before {
            content: '\f570'; /* User Tie Icon */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: -20px;
            right: -20px;
            font-size: 15rem;
            opacity: 0.05;
            color: white;
        }
        .academy-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 30px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }

        /* Process Steps Styles */
        .process-steps { display: flex; justify-content: space-between; margin-top: 30px; gap: 15px; }
        .process-step { flex: 1; text-align: center; background: white; padding: 20px 10px; border-radius: 12px; border: 1px solid #eee; position: relative; }
        .process-step::after { content: '\f054'; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: -12px; top: 50%; transform: translateY(-50%); color: #ddd; z-index: 1; }
        .process-step:last-child::after { content: none; }
        .step-icon { width: 50px; height: 50px; background: #e8f5e9; color: var(--primary-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-size: 1.2rem; }
        .step-title { font-weight: 700; color: #333; margin-bottom: 5px; font-size: 1rem; }
        .step-desc { font-size: 0.85rem; color: #777; line-height: 1.4; }

        /* Certification Box (Specific for Single Grade) */
        .cert-box {
            background: white; border: 1px solid #d1d9e6; border-radius: 20px; padding: 40px; 
            margin-bottom: 30px; position: relative; overflow: hidden; 
            box-shadow: 0 10px 30px rgba(26, 79, 156, 0.05);
        }
        .cert-box::after {
            content: '\f3ed'; /* Shield Check Icon */
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            bottom: -30px;
            right: -30px;
            font-size: 12rem;
            color: var(--primary-color);
            opacity: 0.05;
        }
        .cert-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; border-bottom: 2px solid #f0f0f0; padding-bottom: 20px; flex-wrap: wrap; gap: 20px; }
        .cert-title h3 { font-size: 1.8rem; font-weight: 800; color: #222; margin: 0 0 5px 0; }
        .cert-title span { color: #666; font-size: 1rem; }
        .cert-badge { background: var(--primary-color); color: white; padding: 8px 16px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; box-shadow: 0 4px 10px rgba(26, 79, 156, 0.3); }
        
        .req-list { display: flex; flex-direction: column; gap: 20px; }
        .req-item { display: flex; gap: 20px; align-items: flex-start; background: #f8faff; padding: 20px; border-radius: 12px; border: 1px solid #eef2f9; }
        .req-icon { width: 45px; height: 45px; background: white; border-radius: 50%; box-shadow: 0 4px 10px rgba(0,0,0,0.05); display: flex; align-items: center; justify-content: center; color: var(--primary-color); font-size: 1.2rem; flex-shrink: 0; }
        .req-info h4 { margin: 0 0 5px 0; font-size: 1.1rem; font-weight: 700; color: #333; }
        .req-info p { margin: 0; font-size: 0.95rem; color: #666; line-height: 1.5; }

        /* Dark Box (Contact/Process) */
        .safe-zone-box {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); /* Deep Blue Theme */
            border-radius: 20px; padding: 40px; color: white; text-align: center;
            position: relative; overflow: hidden; box-shadow: 0 20px 40px rgba(30, 60, 114, 0.3);
        }
        .safe-zone-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 30px; }
        
        .process-flow { display: flex; justify-content: center; gap: 30px; margin-top: 30px; flex-wrap: wrap; }
        .flow-item { display: flex; flex-direction: column; align-items: center; position: relative; width: 140px; }
        .flow-item:not(:last-child)::after { content: '\f054'; font-family: "Font Awesome 6 Free"; font-weight: 900; position: absolute; right: -20px; top: 25px; color: rgba(255,255,255,0.3); }
        .flow-icon { width: 50px; height: 50px; border: 2px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 15px; background: rgba(255,255,255,0.1); }
        .flow-text { font-size: 0.9rem; font-weight: 500; opacity: 0.9; }

        /* Footer */
        footer { background: #333; color: #aaa; padding: 50px 5%; font-size: 0.9rem; }
        .footer-content { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
        .company-info strong { color: white; font-size: 1.1rem; }

        /* Animation */
        .fade-up { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0, 0, 0.2, 1); }
        .fade-up.visible { opacity: 1; transform: translateY(0); }

        /* Responsive */
        @media (max-width: 1024px) {
            .chapter-section { flex-direction: column; padding: 60px 5%; }
            .chapter-sidebar { margin-right: 0; margin-bottom: 40px; flex: none; }
            .chapter-main { padding-left: 0; border-left: none; }
            .feature-grid, .license-details, .process-steps { grid-template-columns: 1fr; flex-direction: column; }
            .process-step::after { content: '\f078'; right: 50%; top: auto; bottom: -20px; transform: translateX(50%); }
            .process-step { margin-bottom: 25px; }
            .process-step:last-child { margin-bottom: 0; }

            .flow-item:not(:last-child)::after { display: none; } /* Hide arrow on mobile */
            .process-flow { gap: 20px; }

            .company-info {
                display : none;
            }
            .legal-notice {
                display : none;
            }
			
        }


        @media (max-width: 768px) {
            .ceo-message-block { text-align: left; }
            .narrative-text { text-align: left; }
}

