
        /* Reset & Global */
        :root {
            --primary: #0043e0;
            --primary-dark: #002b99;
            --secondary: #1a1a1a;
            --accent: #00d2ff;
            --success: #00c851;
            --premium-gold: #d4af37;
            --text-main: #111111;
            --text-sub: #666666;
            --bg-light: #f8f9fa;
            --white: #ffffff;
            --border: #eeeeee;
            --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
        }


        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding {
            padding: 120px 0;
        }

        @media (max-width: 1024px) {
            .section-padding {
                padding: 80px 0;
            }
            .container {
                padding: 0 20px;
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
            .container {
                padding: 0 16px;
            }
        }


        /* Page Hero */
        .page-hero {
            position: relative;
            height: 400px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/img/main_slide/pagetop.png')no-repeat 50% 50%;
            background-size: cover;
            opacity: 0.8;
        }

        .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;
        }

        .hero-label {
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            opacity: 0.9;
            margin-top: 60px;
            letter-spacing: 6px;
        }

        .hero-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .hero-desc {
            font-size: 20px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .page-hero {
                height: 300px;
            }
            .hero-title {
                font-size: 36px;
            }
            .hero-desc {
                font-size: 16px;
            }
        }

        /* Section Headers */
        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-sub {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
            display: block;
            font-size: 15px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 800;
            color: #111;
            margin-bottom: 15px;
        }

        .section-desc {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .section-header {
                margin-bottom: 40px;
            }
            .section-title {
                font-size: 28px;
            }
            .section-desc {
                font-size: 16px;
            }
        }

        /* CEO Message */
        .ceo-section {
            background: #fff;
        }

        .ceo-wrap {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: center;
        }

        .ceo-photo {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .ceo-photo img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }

        .ceo-content h3 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .ceo-position {
            font-size: 18px;
            color: #666;
            margin-bottom: 30px;
        }

        .ceo-message {
            font-size: 18px;
            line-height: 1.8;
            color: #444;
            margin-bottom: 20px;
        }

        .ceo-signature {
            margin-top: 40px;
            text-align: right;
        }

        .ceo-signature strong {
            font-size: 24px;
            color: #111;
        }

        @media (max-width: 1024px) {
            .ceo-wrap {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .ceo-photo img {
                height: 400px;
            }
        }



        /* Core Values */
        .values-section {
            background: #fff;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .value-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 50px 30px;
            border-radius: 16px;
            text-align: center;
            border: 2px solid transparent;
            transition: 0.3s;
        }

        .value-card:hover {
            border-color: var(--primary);
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            color: #fff;
        }

        .value-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .value-desc {
            font-size: 16px;
            color: #666;
            line-height: 1.7;
        }

        @media (max-width: 1024px) {
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Organization */
        .org-section {
            background: var(--bg-light);
        }

        .org-teams {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .team-dept {
            background: #fff;
            border-radius: 12px;
            padding: 0;
            box-shadow: var(--shadow-md);
            transition: 0.3s;
            border: 2px solid #f0f0f0;
            overflow: hidden;
            position: relative;
        }

        .team-dept:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .team-dept::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary), var(--accent));
        }

        .team-dept-header {
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
            padding: 35px 35px 30px 45px;
            border-bottom: 2px solid #f0f0f0;
            position: relative;
        }

        .team-dept-number {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 72px;
            font-weight: 900;
            color: rgba(0, 67, 224, 0.08);
            line-height: 1;
        }

        .team-dept-category {
            display: inline-block;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--primary);
            background: rgba(0, 67, 224, 0.1);
            padding: 6px 14px;
            border-radius: 20px;
            margin-bottom: 15px;
        }

        .team-dept-name {
            font-size: 28px;
            font-weight: 800;
            color: #111;
            margin-bottom: 0;
            position: relative;
            z-index: 2;
        }

        .team-dept-body {
            padding: 30px 35px 35px 45px;
        }

        .team-members-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .team-members-list li {
            padding: 14px 0;
            border-bottom: 1px solid #f5f5f5;
            font-size: 16px;
            color: #555;
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            padding-left: 20px;
            transition: 0.2s;
        }

        .team-members-list li:hover {
            color: var(--primary);
            padding-left: 25px;
        }

        .team-members-list li:last-child {
            border-bottom: none;
        }

        .team-members-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: var(--primary);
            border-radius: 50%;
            transition: 0.2s;
        }

        .team-members-list li:hover::before {
            width: 8px;
            height: 8px;
        }

        @media (max-width: 1024px) {
            .org-teams {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .team-dept-header {
                padding: 25px 25px 20px 30px;
            }
            .team-dept-body {
                padding: 25px 25px 25px 30px;
            }
            .team-dept-number {
                font-size: 56px;
                top: 15px;
                right: 20px;
            }
            .team-dept-name {
                font-size: 22px;
            }
            .team-members-list li {
                font-size: 14px;
                padding: 12px 0 12px 18px;
            }
        }



        /* Certifications */
        .cert-showcase {
            background: #fff;
        }

        .cert-gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .cert-image-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: 0.3s;
            border: 1px solid #eee;
        }

        .cert-image-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .cert-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .cert-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .cert-image-card:hover .cert-image img {
            transform: scale(1.1);
        }

        .cert-label {
            padding: 20px;
            background: #fff;
            text-align: left;
            border-top: 1px solid #f0f0f0;
        }

        .cert-label-title {
            font-size: 18px;
            font-weight: 700;
            color: #111;
            margin-bottom: 5px;
        }

        .cert-label-year {
            font-size: 14px;
            color: #888;
        }

        @media (max-width: 1024px) {
            .cert-gallery {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Clients */
        .clients-section {
            background: #f8f9fa;
        }

        .clients-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .client-logo {
            background: #fff;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            color: #888;
            border: 1px solid #eee;
            transition: 0.3s;
        }

        .client-logo:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        @media (max-width: 1024px) {
            .clients-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .clients-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* CSR */
        .csr-section {
            background: #fff;
        }

        .csr-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .csr-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: 0.3s;
            border: 1px solid #eee;
        }

        .csr-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .csr-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .csr-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .csr-card:hover .csr-image img {
            transform: scale(1.1);
        }

        .csr-content {
            padding: 30px;
        }

        .csr-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #111;
        }

        .csr-desc {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
            word-break: keep-all;
        }

        @media (max-width: 1024px) {
            .csr-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Contact Info */
        .contact-section {
            background: #fff;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 60px;
        }

        .contact-info {
            background: var(--bg-light);
            padding: 50px;
            border-radius: 16px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #fff;
            flex-shrink: 0;
        }

        .info-content h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .info-content p {
            font-size: 16px;
            color: #666;
            line-height: 1.6;
        }

        .map-placeholder {
            background: #e9ecef;
            height: 100%;
            min-height: 400px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 18px;
        }

        @media (max-width: 1024px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

