
        :root {
            --primary-blue: rgb(25, 65, 143);
            --secondary-blue: rgb(41, 98, 188);
            --accent-color: rgb(245, 158, 11);
            --primary2-red: rgb(244, 63, 94);
            --secondary2-red: rgb(190, 18, 60);
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            scroll-behavior: smooth;
            line-height: 1.6;
            background-color: #f9fafb;
        }
        
        .primary-blue {
            color: var(--primary-blue);
        }
        
        .bg-primary-blue {
            background-color: var(--primary-blue);
        }
        
        .border-primary-blue {
            border-color: var(--primary-blue);
        }
        
        .section {
            padding: 4rem 0;
            border-bottom: 1px solid #eaeaea;
        }
        
        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .header {
            background-color: #0951c7;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0rem 1.5rem;
            max-width: 1440px;
            margin: 0 auto;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-text {
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary-blue);
            margin-left: 0.5rem;
        }

        .footer {
            background-color: #113367;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0rem 1.5rem;
            max-width: 1440px;
            margin: 0 auto;
        }
        
        .foot {
            display: flex;
            align-items: center;
        }
        
        .hero {
            background:  url('../image/topbanner_bg.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 2rem 0;
            text-align: left;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" opacity="0.2"/></svg>');
            background-size: 300px 300px;
            opacity: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 0;
            width: 65px;
            height: 4px;
            background-color: var(--accent-color);
        }
        
        .card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 1.75rem;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 4px solid transparent;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-top-color: var(--primary-blue);
        }
        
        .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .card-title i {
            margin-right: 0.75rem;
            font-size: 1.5rem;
            color: var(--accent-color);
        }
        
        .btn {
            display: inline-block;
            padding: 0.35rem 1.75rem;
            border-radius: 4px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            text-decoration: none;
        }
        
        .btn-primary {
            background-color: var(--primary2-red);
            color: white;
            box-shadow: 0 4px 6px rgba(25, 65, 143, 0.25);
        }
        
        .btn-primary:hover {
            background-color: var(--secondary2-red);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(25, 65, 143, 0.3);
        }
        
        .btn-outline {
            border: 2px solid var(--primary-white);
            color: white;
            background-color:#333;
        }
        
        .btn-outline:hover {
            background-color: rgba(25, 65, 143, 0.5);
            box-shadow: 0 4px 6px rgba(25, 65, 143, 0.1);
        }
        
        .tab-container {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }
        
        .tab-buttons {
            display: flex;
            flex-wrap: wrap;
            background-color: #f1f5f9;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .tab-button {
            padding: 1rem 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
            background: transparent;
            color: #64748b;
        }
        
        .tab-button.active {
            background-color: white;
            color: var(--primary-blue);
            box-shadow: 0 2px 0 var(--primary-blue);
        }
        
        .tab-button:hover:not(.active) {
            background-color: rgba(255, 255, 255, 0.5);
            color: var(--secondary-blue);
        }
        
        .tab-content {
            display: none;
            padding: 2rem;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .process-flow {
            display: flex;
            align-items: center;
            text-align: center;
            justify-content: center;
            overflow-x: auto;
            padding: 1.5rem 0;
            margin: 2rem 0;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        .process-flow::-webkit-scrollbar {
            display: none;
        }
        
        .process-step {
            flex-shrink: 0;
            background-color: var(--primary-blue);
            color: white;
            padding: 0.75rem 1.25rem;
            border-radius: 4px;
            position: relative;
            margin-right: 3rem;
            /*min-width: max-content;*/
            box-shadow: 0 4px 6px rgba(25, 65, 143, 0.2);
            max-width: 150px;
        }
        
        .process-step:last-child {
            margin-right: 0;
        }
        
        .process-step::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -2.5rem;
            transform: translateY(-50%);
            width: 1rem;
            height: 0px;
            background-color: var(--primary-blue);
        }
        
        .process-step:last-child::after {
            display: none;
        }
        
        .process-step::before {
            content: '→';
            position: absolute;
            top: 50%;
            right: -2rem;
            transform: translateY(-50%);
            color: var(--primary-blue);
            font-size: 1.25rem;
            font-weight: bold;
        }
        
        .process-step:last-child::before {
            display: none;
        }
        
        .resource-category {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 1.75rem;
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary-blue);
            transition: transform 0.3s;
        }
        
        .resource-category:hover {
            transform: translateX(5px);
        }
        
        .resource-category-title {
            display: flex;
            align-items: center;
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 1.25rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .resource-category-title i {
            font-size: 1.5rem;
            margin-right: 0.75rem;
        }
        
        .resource-list {
            list-style: none;
            padding-left: 1.5rem;
        }
        
        .resource-list li {
            position: relative;
            padding: 0.75rem 0;
            transition: transform 0.2s;
            border-bottom: 1px dashed #e5e7eb;
        }
        
        .resource-list li:last-child {
            border-bottom: none;
        }
        
        .resource-list li:hover {
            transform: translateX(8px);
        }
        
        .resource-list li::before {
            content: '•';
            position: absolute;
            left: -1rem;
            color: var(--accent-color);
            font-size: 1.25rem;
        }
        
        .resource-list a {
            color: #333;
            text-decoration: none;
            transition: color 0.2s;
            display: block;
        }
        
        .resource-list a:hover {
            color: var(--primary-blue);
        }
        
        .contact-card {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s;
        }
        
        .contact-card:hover {
            transform: translateY(-5px);
        }
        
        .contact-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .contact-info {
            margin-bottom: 0.75rem;
        }
        
        .contact-info strong {
            display: inline-block;
            min-width: 50px;
        }
        
        .scroll-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background-color: var(--primary-blue);
            color: white;
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 99;
        }
        
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:hover {
            background-color: var(--secondary-blue);
            transform: translateY(-3px);
        }

        .image-section {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 0 0 0;
        }
        .image-section img {
            width: 110px;
            height: 110px;
        }
        
        @media (max-width: 768px) {
            .header-container {
                padding: 0.75rem 1rem;
            }
            
            .hero {
                padding: 4rem 0;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .process-step {
                margin-right: 2.5rem;
            }
            
            .process-step::after {
                right: -2rem;
                width: 1.5rem;
            }
            
            .process-step::before {
                right: -1.25rem;
            }
            
            .tab-button {
                padding: 0.75rem 1rem;
                font-size: 0.875rem;
            }
            
            .tab-content {
                padding: 1.5rem;
            }
        }




