        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333333;
            overflow-x: hidden;
        }

        /* Top Bar */
        .top-bar {
            background: #000a97;
            color: white;
            padding: 12px 0;
            font-size: 14px;
        }

        .top-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-bar-left span {
            margin-right: 25px;
        }

        .top-bar-right {
            display: flex;
            gap: 15px;
        }

        .top-bar-right a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .top-bar-right a:hover {
            color: #0066CC;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 46px;
            width: 100%;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        
        .navbar .white-logo {
            display: none;
        }
        
        .navbar.scrolled {
            top: 0;
            background: #0066CC;
        }
        
        .navbar.scrolled .blue-logo {
            display: none;
        }
        
        .navbar.scrolled .white-logo {
            display: block;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* Desktop Menü */
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        
        .nav-link {
            text-decoration: none;
            color: #333333;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }
        
        .navbar.scrolled .nav-link {
            color: white;
        }
        
        .nav-link:hover {
            color: #0066CC;
        }
        
        .navbar.scrolled .nav-link:hover {
            color: #E6F0FA;
        }
        
        .nav-cta {
            background: #0066CC;
            color: white !important;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .nav-cta:hover {
            background: #004499;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,102,204,0.3);
        }
        
        .navbar.scrolled .nav-cta {
            background: white;
            color: #0066CC !important;
        }
        
        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            transition: all 0.3s ease;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        /* Mobile Responsive */
        @media screen and (max-width: 768px) {
            .hamburger {
                display: flex;
            }
        
            /* Mobilde başlangıçta gizle */
            .nav-menu {
                position: fixed;
                top: 95px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 95px);
                background: white;
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 50px;
                gap: 40px;
                transition: left 0.3s ease;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
                z-index: 2000; /* navbarın üstünde çıkması için artırıldı */
            }
        
            /* Açıldığında görünür */
            .nav-menu.active {
                left: 0;
            }
        
            .nav-link {
                font-size: 18px;
                font-weight: 600;
                color: #333;
            }
        
            .nav-cta {
                padding: 15px 30px;
                font-size: 18px;
            }
        
            /* Hamburger rengini navbar scroll durumuna göre ayarla */
            .navbar.scrolled .hamburger span {
                background: #fff;
            }
            
            .navbar.scrolled .nav-link {
                color: #333 !important;  /* mobil menüde her zaman koyu renk */
            }
            
           .navbar.scrolled .nav-link:hover {
                color: #0066CC !important;
            }
            
            .navbar.scrolled .nav-cta {
                background: #0066CC;
                color: #fff !important;
            }
            
            .navbar.scrolled .hamburger span {
                background: #333 !important; /* mobil hamburger hep siyah */
            }
        }


        /* Hero Section */
        .hero {
            background: url(../images/firefly.jpg) center center / cover no-repeat;
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 102, 204, 0.434) 0%, rgba(0, 68, 153, 0.6) 50%, rgba(0, 34, 102, 0.6) 100%), rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .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="white" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.8" fill="white" opacity="0.08"/><circle cx="10" cy="60" r="1.2" fill="white" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            animation: float 25s ease-in-out infinite;
        }

        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
        }

        .shape-1 {
            width: 200px;
            height: 200px;
            top: 10%;
            right: 10%;
            animation: floatY 8s ease-in-out infinite;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 5%;
            animation: floatX 10s ease-in-out infinite reverse;
        }

        .shape-3 {
            width: 100px;
            height: 100px;
            top: 60%;
            right: 20%;
            animation: pulse 6s ease-in-out infinite;
        }

        @keyframes floatY {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-30px); }
        }

        @keyframes floatX {
            0%, 100% { transform: translateX(0px); }
            50% { transform: translateX(30px); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.1; }
            50% { transform: scale(1.2); opacity: 0.2; }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 56px;
            font-weight: 800;
            color: white;
            line-height: 1.2;
            margin-bottom: 25px;
            opacity: 0;
            animation: slideInLeft 1s ease-out 0.3s forwards;
        }

        .hero-content .highlight {
            color: #E6F0FA;
        }


        .hero-content p {
            font-size: 20px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 35px;
            opacity: 0;
            animation: slideInLeft 1s ease-out 0.6s forwards;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
            opacity: 0;
            animation: slideInLeft 1s ease-out 0.9s forwards;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            color: white;
            font-weight: 500;
        }

        .hero-feature i {
            color: #E6F0FA;
            margin-right: 12px;
            font-size: 18px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            opacity: 0;
            animation: slideInLeft 1s ease-out 1.2s forwards;
        }

        .btn-primary {
            background: #E6F0FA;
            color: #0066CC;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255,215,0,0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(255,215,0,0.4);
            background: #E6F0FA;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 18px 40px;
            border: 2px solid white;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: white;
            color: #0066CC;
            transform: translateY(-3px);
        }

        .hero-visual {
            position: relative;
            opacity: 0;
            animation: slideInRight 1s ease-out 0.5s forwards;
        }

        .hero-card {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            color: white;
        }

        .hero-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #E6F0FA;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: #E6F0FA;
            display: block;
        }

        .stat-label {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Trust Badges */
        .trust-section {
            background: white;
            padding: 60px 0;
            border-bottom: 1px solid #E6F0FA;
        }

        .trust-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .trust-title {
            text-align: center;
            font-size: 18px;
            color: #666666;
            margin-bottom: 40px;
            font-weight: 500;
        }

        .trust-logos {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            align-items: center;
        }

        .trust-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            background: #F8FAFE;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .trust-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,102,204,0.1);
        }

        .trust-item i {
            font-size: 32px;
            color: #0066CC;
            margin-right: 15px;
        }

        .trust-text {
            font-weight: 600;
            color: #333333;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: linear-gradient(135deg, #F8FAFE 0%, #E6F0FA 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-subtitle {
            color: #0066CC;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            color: #333333;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 18px;
            color: #666666;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .service-card {
            background: white;
            padding: 50px 40px;
            border-radius: 20px;
            text-align: left;
            box-shadow: 0 10px 30px rgba(0,102,204,0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #0066CC, #e0e4ff)
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0,102,204,0.2);
        }

        .service-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #0066CC, #004499);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
        }

        .service-icon i {
            font-size: 32px;
            color: white;
        }

        .service-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #666666;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .service-features li {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            color: #333333;
            font-weight: 500;
        }

        .service-features li i {
            color: #0066CC;
            margin-right: 10px;
            width: 16px;
        }

        .service-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 25px;
            border-top: 1px solid #E6F0FA;
        }

        .price-text {
            font-size: 18px;
            font-weight: 700;
            color: #0066CC;
        }

        .service-btn {
            background: #0066CC;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .service-btn:hover {
            background: #004499;
            transform: translateX(5px);
        }

        /* Process Section */
        .process {
            padding: 100px 0;
            background: white;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #0066CC, #2c9fff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            font-weight: 800;
            color: white;
            position: relative;
            z-index: 2;
        }

        .step-number::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px solid #E6F0FA;
            border-radius: 50%;
            z-index: -1;
        }

        .process-step h4 {
            font-size: 20px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 15px;
        }

        .process-step p {
            color: #666666;
            line-height: 1.6;
        }

        /* Why Choose Us */
        .why-choose {
            padding: 100px 0;
            background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
            color: white;
        }

        .why-choose-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .why-choose-text h2 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .why-choose-text p {
            font-size: 18px;
            margin-bottom: 40px;
            color: rgba(255,255,255,0.9);
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .advantage-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .advantage-icon {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .advantage-icon i {
            color: #FFD700;
            font-size: 20px;
        }

        .advantage-text h5 {
            font-weight: 700;
            margin-bottom: 5px;
            font-size: 16px;
        }

        .advantage-text p {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            margin: 0;
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: #F8FAFE;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,102,204,0.1);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 60px;
            color: #E6F0FA;
            font-family: serif;
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.7;
            color: #333333;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #0066CC, #FFD700);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
        }

        .author-info h6 {
            font-weight: 700;
            color: #333333;
            margin-bottom: 2px;
        }

        .author-info span {
            color: #666666;
            font-size: 14px;
        }

        .rating {
            margin-top: 15px;
        }

        .rating i {
            color: #FFD700;
            margin-right: 3px;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #E6F0FA 0%, #E6F0FA 100%);
            text-align: center;
        }

       .hz-cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
            text-align: center;
            color: white;
        }

        .hz-cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hz-cta-section h2 {
            font-size: 42px;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }

        .hz-cta-section p {
            font-size: 18px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .cta-content h2 {
            font-size: 42px;
            font-weight: 800;
            color: #0066CC;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 20px;
            color: #333333;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-btn-primary {
            background: #0066CC;
            color: white;
            padding: 20px 45px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 18px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,102,204,0.3);
        }

        .cta-btn-primary:hover {
            background: #004499;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,102,204,0.4);
        }

        /* Application Form Styles */
        .application-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #F8FAFE 0%, #E6F0FA 100%);
            position: relative;
            overflow: hidden;
        }

        .application-section::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,102,204,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            opacity: 0.3;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
            margin-top: 75px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: #0066CC;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 42px;
            font-weight: 800;
            color: #333333;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 18px;
            color: #666666;
            max-width: 600px;
            margin: 0 auto;
        }

        .form-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .application-form {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,102,204,0.15);
            position: relative;
            overflow: hidden;
        }

        .application-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #0066CC 0%, #2c9fff 100%);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            position: relative;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333333;
            font-size: 14px;
        }

        .required::after {
            content: ' *';
            color: #e74c3c;
            font-weight: bold;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #E6F0FA;
            border-radius: 10px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            background: #ffffff;
            color: #333333;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #0066CC;
            box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
            transform: translateY(-2px);
        }

        .form-group input:hover,
        .form-group select:hover {
            border-color: #2c9fff;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
            background-repeat: no-repeat;
            background-position: right 18px center;
            background-size: 12px;
        }

        .form-checkboxes {
            margin: 30px 0;
            padding: 25px;
            background: #F8FAFE;
            border-radius: 12px;
            border: 1px solid #E6F0FA;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            gap: 10px;
        }

        .checkbox-group:last-child {
            margin-bottom: 0;
        }

        .checkbox-group input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: #0066CC;
            cursor: pointer;
            margin: 0;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .checkbox-group label {
            font-size: 13px;
            line-height: 1.5;
            color: #555555;
            cursor: pointer;
            margin: 0;
        }

        .checkbox-group label a {
            color: #0066CC;
            text-decoration: none;
            font-weight: 600;
        }

        .checkbox-group label a:hover {
            text-decoration: underline;
        }

        .form-submit {
            text-align: center;
            margin-top: 30px;
        }

        .btn-submit {
            background: linear-gradient(135deg, #0066CC 0%, #2c9fff 100%);
            color: white;
            padding: 16px 40px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 6px 20px rgba(0,102,204,0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn-submit:hover::before {
            left: 100%;
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,102,204,0.4);
        }

        .btn-submit:active {
            transform: translateY(-1px);
        }

        .btn-hk-primary {
            background: #0066CC;
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,102,204,0.3);
        }

        .btn-hk-primary:hover {
            background: #004499;
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0,102,204,0.4);
        }

        .btn-hk-secondary {
            background: transparent;
            color: #0066CC;
            padding: 18px 40px;
            border: 2px solid #0066CC;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-hk-secondary:hover {
            background: #0066CC;
            color: white;
            transform: translateY(-3px);
        }

        .form-note {
            margin-top: 12px;
            font-size: 12px;
            color: #666666;
            font-style: italic;
        }

        /* Form Benefits Sidebar */
        .form-benefits {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,102,204,0.1);
            height: fit-content;
            position: sticky;
            top: 20px;
        }

        .form-benefits h4 {
            font-size: 20px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 20px;
            text-align: center;
        }

        .benefits-list {
            list-style: none;
            margin-bottom: 25px;
        }

        .benefits-list li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 14px;
            color: #555555;
        }

        .benefits-list li i {
            color: #0066CC;
            margin-right: 10px;
            font-size: 14px;
            width: 16px;
        }

        .contact-info {
            background: linear-gradient(135deg, #0066CC 0%, #2c9fff 100%);
            padding: 20px;
            border-radius: 12px;
            color: white;
            text-align: center;
        }

        .contact-info h5 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            font-size: 14px;
            gap: 8px;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-item i {
            font-size: 14px;
        }

                /* Contact Hero */
        .contact-hero {
            background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
            padding: 140px 0 80px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-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="white" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.8" fill="white" opacity="0.08"/><circle cx="10" cy="60" r="1.2" fill="white" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            animation: float 25s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .contact-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .contact-hero h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .contact-hero p {
            font-size: 20px;
            color: rgba(255,255,255,0.9);
            margin-bottom: 40px;
        }

        .contact-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .contact-stat {
            text-align: center;
        }

        .contact-stat i {
            font-size: 32px;
            color: #E6F0FA;
            margin-bottom: 15px;
        }

        .contact-stat h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .contact-stat p {
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            margin: 0;
        }

        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .contact-form-container {
            background: #F8FAFE;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,102,204,0.1);
        }

        .contact-form-container h2 {
            font-size: 32px;
            font-weight: 800;
            color: #333333;
            margin-bottom: 20px;
        }

        .contact-form-container p {
            color: #666666;
            margin-bottom: 40px;
            font-size: 16px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333333;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #E6F0FA;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #0066CC;
            box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-submit {
            background: #0066CC;
            color: white;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .form-submit:hover {
            background: #004499;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,102,204,0.3);
        }

        .contact-info {
            padding: 20px 0;
        }

        .contact-info h2 {
            font-size: 32px;
            font-weight: 800;
            color: #333333;
            margin-bottom: 20px;
        }

        .contact-info-text {
            color: #666666;
            margin-bottom: 40px;
            font-size: 16px;
            line-height: 1.7;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,102,204,0.1);
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,102,204,0.15);
        }

        .contact-method-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0066CC, #004499);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-method-icon i {
            font-size: 24px;
            color: white;
        }

        .contact-method-content h4 {
            font-size: 18px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 8px;
        }

        .contact-method-content p {
            color: #666666;
            margin-bottom: 5px;
        }

        .contact-method-content a {
            color: #0066CC;
            text-decoration: none;
            font-weight: 600;
        }

        .contact-method-content a:hover {
            text-decoration: underline;
        }

        /* Error States */
        .form-group.error input,
        .form-group.error select {
            border-color: #e74c3c;
            box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
        }

        .error-message {
            color: #e74c3c;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

        .form-group.error .error-message {
            display: block;
        }

        /* Success Animation */
        .form-success {
            display: none;
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0,102,204,0.15);
        }

        .form-success.show {
            display: block;
        }

        .success-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #27ae60, #2ecc71);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            animation: bounceIn 0.8s ease-out;
        }

        .success-icon i {
            font-size: 35px;
            color: white;
        }

        @keyframes bounceIn {
            0% {
                transform: scale(0);
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Loading State */
        .btn-submit.loading {
            pointer-events: none;
            opacity: 0.8;
        }

        .btn-submit.loading i {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .application-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 32px;
            }

            .form-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .application-form {
                padding: 30px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .form-benefits {
                order: -1;
                position: relative;
                top: 0;
            }

            .btn-submit {
                width: 100%;
                justify-content: center;
            }
        }
        
                /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
            padding: 140px 0 80px;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::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="white" opacity="0.1"/><circle cx="75" cy="75" r="1.5" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.8" fill="white" opacity="0.08"/><circle cx="10" cy="60" r="1.2" fill="white" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            animation: float 25s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .page-header h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .page-header p {
            font-size: 20px;
            color: rgba(255,255,255,0.9);
            position: relative;
            z-index: 2;
        }

                /* About Section */
        .about-section {
            padding: 100px 0;
            background: white;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text h2 {
            font-size: 42px;
            font-weight: 800;
            color: #333333;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .about-text .highlight {
            color: #0066CC;
        }

        .about-text p {
            font-size: 18px;
            color: #666666;
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .about-features {
            list-style: none;
            margin-top: 30px;
        }

        .about-features li {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 16px;
            color: #333333;
            font-weight: 500;
        }

        .about-features li i {
            color: #0066CC;
            margin-right: 12px;
            font-size: 18px;
            width: 20px;
        }

        .about-visual {
            position: relative;
        }

        .about-card {
            background: linear-gradient(135deg, #F8FAFE 0%, #E6F0FA 100%);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .about-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #0066CC 0%, #2c9fff 100%);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 30px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 42px;
            font-weight: 800;
            color: #0066CC;
            display: block;
            margin-bottom: 5px;
        }

        .main-stat-number {
            font-size: 42px;
            font-weight: 800;
            color: #ffffff;
            display: block;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 14px;
            color: #666666;
            font-weight: 600;
        }

        /* Mission Vision Section */
        .mission-vision {
            padding: 100px 0;
            background: linear-gradient(135deg, #F8FAFE 0%, #E6F0FA 100%);
        }

        .mission-vision-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
        }

        .mission-card, .vision-card {
            background: white;
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,102,204,0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #0066CC, #2c9fff);
        }

        .vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #2c9fff, #0066CC);
        }

        .mission-card:hover, .vision-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0,102,204,0.2);
        }

        .card-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }

        .card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #0066CC, #004499);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
        }

        .card-icon i {
            font-size: 32px;
            color: white;
        }

        .card-title {
            font-size: 28px;
            font-weight: 700;
            color: #333333;
        }

        .card-text {
            font-size: 16px;
            color: #666666;
            line-height: 1.7;
        }

        /* Values Section */
        .values-section {
            padding: 100px 0;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            margin-top: 50px;
        }

        .section-subtitle {
            color: #0066CC;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            color: #333333;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 18px;
            color: #666666;
            max-width: 600px;
            margin: 0 auto;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .value-card {
            background: linear-gradient(135deg, #F8FAFE 0%, #E6F0FA 100%);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,102,204,0.15);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #0066CC, #2c9fff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .value-icon i {
            font-size: 36px;
            color: white;
        }

        .value-card h4 {
            font-size: 22px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 15px;
        }

        .value-card p {
            color: #666666;
            line-height: 1.6;
        }

        /* Team Section */
        .team-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
            color: white;
        }

        .team-section .section-title {
            color: white;
        }

        .team-section .section-description {
            color: rgba(255,255,255,0.9);
        }

        .team-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .team-stat {
            text-align: center;
            padding: 30px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .team-stat-number {
            font-size: 48px;
            font-weight: 800;
            color: #E6F0FA;
            display: block;
            margin-bottom: 10px;
        }

        .team-stat-label {
            font-size: 16px;
            color: rgba(255,255,255,0.9);
            font-weight: 600;
        }

                /* Map Section */
        .map-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #F8FAFE 0%, #E6F0FA 100%);
        }

        .map-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            align-items: end;
        }

        .map-content h2 {
            font-size: 42px;
            font-weight: 800;
            color: #333333;
            margin-bottom: 20px;
        }

        .map-content p {
            color: #666666;
            margin-bottom: 30px;
            font-size: 16px;
            line-height: 1.7;
        }

        .office-hours {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,102,204,0.1);
        }

        .office-hours h4 {
            font-size: 20px;
            font-weight: 700;
            color: #333333;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .office-hours h4 i {
            color: #0066CC;
        }

        .hours-list {
            list-style: none;
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #E6F0FA;
        }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .day {
            font-weight: 600;
            color: #333333;
        }

        .time {
            color: #666666;
        }

        .map-placeholder {
            background: #E6F0FA;
            border-radius: 15px;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0066CC;
            font-size: 18px;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 40%, rgba(0,102,204,0.05) 50%, transparent 60%);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 0;
            background: white;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-header h2 {
            font-size: 42px;
            font-weight: 800;
            color: #333333;
            margin-bottom: 15px;
        }

        .faq-header p {
            color: #666666;
            font-size: 16px;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 20px;
        }

        .faq-item {
            background: #F8FAFE;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(0,102,204,0.1);
        }

        .faq-question {
            padding: 25px;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #333333;
            border: none;
            width: 100%;
            text-align: left;
            font-size: 16px;
        }

        .faq-question:hover {
            color: #0066CC;
        }

        .faq-question i {
            transition: transform 0.3s ease;
            color: #0066CC;
        }

        .faq-answer {
            padding: 0 25px 25px;
            color: #666666;
            line-height: 1.6;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Footer */
        .footer {
            background: #ffffff;
            color: rgb(0, 0, 0);
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-about h3 {
            font-size: 28px;
            font-weight: 800;
            color: #0066CC;
            margin-bottom: 20px;
        }

        .footer-about p {
            color: #000000;
            line-height: 1.7;
            margin-bottom: 25px;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #000000;
        }

        .footer-contact-item i {
            color: #0066CC;
            width: 20px;
        }

        .footer-section h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 25px;
            color: rgb(0, 0, 0);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #0066CC;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: #e6e6e6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgb(0, 0, 0);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #0066CC;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid #000000;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #000000;
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            color: #000000;
            text-decoration: none;
            font-size: 14px;
        }

        .footer-bottom-links a:hover {
            color: #0066CC;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }

            .navbar {
                top: 0;
            }

            .hero-container {
                flex-direction: column;
                padding: 40px 16px;    
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-card {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .services-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .why-choose-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .advantages-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

                        .top-bar {
                display: none;
            }

            .page-header {
                padding: 120px 0 60px;
            }

            .page-header h1 {
                font-size: 32px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-text h2 {
                font-size: 28px;
            }

            .mission-vision-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .section-title {
                font-size: 32px;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .team-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .btn-hk-primary,
            .btn-hk-secondary {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .contact-hero h1 {
                font-size: 36px;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .contact-form-container {
                padding: 30px;
            }

            .map-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .map-content h2 {
                font-size: 32px;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }

            .contact-stats {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }