        .hero-banner {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
                linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }
        
        .brand-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            text-decoration: none;
            letter-spacing: -0.02em;
        }
        
        .brand-logo:hover {
            color: #ffc107;
            text-decoration: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
            color: #ffffff;
        }
        
        .hero-subtitle {
            font-size: 2rem;
            font-weight: 600;
            color: #ffc107;
            margin-bottom: 1rem;
        }
        
        .hero-description {
            font-size: 1.3rem;
            color: #e2e8f0;
            margin-bottom: 3rem;
            line-height: 1.6;
        }
        
        .cta-button {
            background: linear-gradient(45deg, #ffc107, #ffeb3b);
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e3a8a;
            border-radius: 50px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
            color: #1e3a8a;
            text-decoration: none;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2rem;
            margin: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .feature-icon {
            font-size: 3rem;
            color: #ffc107;
            margin-bottom: 1rem;
        }
        
        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }
        
        .feature-text {
            color: #e2e8f0;
            font-size: 1rem;
        }
        
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .floating-icon {
            position: absolute;
            color: rgba(255, 255, 255, 0.1);
            animation: floatIcon 15s ease-in-out infinite;
        }
        
        .floating-icon:nth-child(1) {
            top: 20%;
            left: 10%;
            font-size: 2rem;
            animation-delay: 0s;
        }
        
        .floating-icon:nth-child(2) {
            top: 60%;
            right: 15%;
            font-size: 1.5rem;
            animation-delay: 5s;
        }
        
        .floating-icon:nth-child(3) {
            bottom: 30%;
            left: 20%;
            font-size: 1.8rem;
            animation-delay: 10s;
        }
        
        @keyframes floatIcon {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
            50% { transform: translateY(-30px) rotate(10deg); opacity: 0.2; }
        }
        
        .navbar {
            background: rgba(30, 58, 138, 0.95) !important;
            backdrop-filter: blur(10px);
        }
        
        .navbar-nav .nav-link {
            color: #ffffff !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: #ffc107 !important;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .brand-logo {
                font-size: 2rem;
            }
        }
         /* Services Section Styles */
        .services-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
        }
        
        .services-title {
            font-size: 3rem;
            font-weight: 800;
            color: #1e3a8a;
            margin-bottom: 1rem;
        }
        
        .services-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 0;
        }
        
        .service-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            height: 100%;
            border: 2px solid transparent;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(30, 58, 138, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #ffc107);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-color: #3b82f6;
            box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }
        
        .service-icon i {
            font-size: 2rem;
            color: #ffffff;
        }
        
        .service-card:hover .service-icon {
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            transform: scale(1.1) rotate(5deg);
        }
        
        .service-card:hover .service-icon i {
            color: #1e3a8a;
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 1rem;
        }
        
        .service-description {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .service-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .feature-tag {
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            color: #1e40af;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            border: 1px solid #bfdbfe;
        }
        
        .featured-service {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            color: #ffffff;
        }
        
        .featured-service .service-title {
            color: #ffffff;
        }
        
        .featured-service .service-description {
            color: #e2e8f0;
        }
        
        .featured-service .service-icon {
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
        }
        
        .featured-service .service-icon i {
            color: #1e3a8a;
        }
        
        .featured-service:hover .service-icon {
            background: linear-gradient(135deg, #ffffff, #f1f5f9);
        }
        
        .featured-service .feature-tag {
            background: rgba(255, 255, 255, 0.15);
            color: #ffc107;
            border: 1px solid rgba(255, 193, 7, 0.3);
        }
        
        .services-cta-button {
            background: linear-gradient(45deg, #1e3a8a, #3b82f6);
            color: #ffffff;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
        }
        
        .services-cta-button:hover {
            background: linear-gradient(45deg, #ffc107, #ffeb3b);
            color: #1e3a8a;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
            text-decoration: none;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.5rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .brand-logo {
                font-size: 2rem;
            }
            
            .services-title {
                font-size: 2.5rem;
            }
            
            .service-card {
                padding: 2rem 1.5rem;
            }
            
            .service-icon {
                width: 70px;
                height: 70px;
            }
            
            .service-icon i {
                font-size: 1.8rem;
            }
        }
        .process-section {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 15% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }
        
        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1e3a8a;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #ffc107);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .process-timeline {
            position: relative;
            padding: 0;
        }
        
        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #3b82f6, #ffc107, #3b82f6);
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .process-step {
            position: relative;
            margin-bottom: 100px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }
        
        .process-step.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .process-step:nth-child(even) .step-content {
            flex-direction: row-reverse;
        }
        
        .step-content {
            display: flex;
            align-items: center;
            gap: 80px;
        }
        
        .step-number {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: #ffffff;
            box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
            z-index: 3;
            border: 6px solid #ffffff;
        }
        
        .step-card {
            flex: 1;
            background: #ffffff;
            padding: 1.5rem 3rem;
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(30, 58, 138, 0.1);
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #3b82f6, #ffc107);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .step-card:hover {
            transform: translateY(-10px);
            border-color: #3b82f6;
            box-shadow: 0 25px 70px rgba(30, 58, 138, 0.15);
        }
        
        .step-card:hover::before {
            transform: scaleX(1);
        }
        
        .step-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: all 0.4s ease;
        }
        
        .step-icon i {
            font-size: 1.5rem;
            color: #ffffff;
        }
        
        .step-card:hover .step-icon {
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            transform: scale(1.1) rotate(5deg);
        }
        
        .step-card:hover .step-icon i {
            color: #1e3a8a;
        }
        
        .step-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 1rem;
        }
        
        .step-description {
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        
        .step-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .step-features li {
            padding: 0.5rem 0;
            color: #475569;
            position: relative;
            padding-left: 2rem;
        }
        
        .step-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #ffc107;
            font-size: 1rem;
        }
        
        .step-visual {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .visual-element {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px dashed #3b82f6;
            transition: all 0.4s ease;
        }
        
        .visual-element:hover {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border-color: #ffc107;
            transform: scale(1.05);
        }
        
        .visual-element i {
            font-size: 4rem;
            color: #3b82f6;
            transition: all 0.4s ease;
        }
        
        .visual-element:hover i {
            color: #1e3a8a;
            transform: scale(1.1);
        }
        
        .cta-section {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            padding: 60px 40px;
            border-radius: 30px;
            text-align: center;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }
        
        .cta-description {
            font-size: 1.2rem;
            color: #e2e8f0;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }
        
        .cta-button {
            background: linear-gradient(45deg, #ffc107, #ffeb3b);
            color: #1e3a8a;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
            position: relative;
            z-index: 2;
        }
        
        .cta-button:hover {
            background: linear-gradient(45deg, #ffffff, #f8fafc);
            color: #1e3a8a;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
            text-decoration: none;
        }
        
        .stats-section {
            display: flex;
            justify-content: space-around;
            margin-top: 60px;
            flex-wrap: wrap;
            gap: 2rem;
        }
        
        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffc107;
            display: block;
        }
        
        .stat-label {
            color: #e2e8f0;
            font-size: 1rem;
            margin-top: 0.5rem;
        }
        
        @media (max-width: 992px) {
            .timeline-line {
                display: none;
            }
            
            .step-content {
                flex-direction: column !important;
                gap: 40px;
            }
            
            .step-number {
                position: relative;
                left: auto;
                top: auto;
                transform: none;
                margin: 0 auto 2rem auto;
            }
            
            .visual-element {
                width: 250px;
                height: 250px;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 2rem;
            }
            
            .stats-section {
                justify-content: center;
            }
        }
        
        @media (max-width: 768px) {
            .step-card {
                padding: 2rem;
            }
            
            .visual-element {
                width: 200px;
                height: 200px;
            }
            
            .visual-element i {
                font-size: 3rem;
            }
            
            .step-icon {
                width: 80px;
                height: 80px;
            }
            
            .step-icon i {
                font-size: 2rem;
            }
        }
        .mission-vision-section {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        .mission-vision-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
                linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%);
            animation: backgroundFloat 25s ease-in-out infinite;
        }
        
        @keyframes backgroundFloat {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(1deg); }
        }
        
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            animation: floatShape 20s ease-in-out infinite;
        }
        
        .shape:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: -10%;
            animation-delay: 0s;
        }
        
        .shape:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            right: -5%;
            animation-delay: 7s;
        }
        
        .shape:nth-child(3) {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 10%;
            animation-delay: 14s;
        }
        
        @keyframes floatShape {
            0%, 100% { transform: translateY(0px) scale(1); opacity: 0.05; }
            50% { transform: translateY(-50px) scale(1.1); opacity: 0.1; }
        }
        
        .section-content {
            position: relative;
            z-index: 2;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .main-title {
            font-size: 4rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .main-subtitle {
            font-size: 1.4rem;
            color: #e2e8f0;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .highlight-text {
            color: #ffc107;
            font-weight: 600;
        }
        
        .mission-vision-cards {
            margin-bottom: 100px;
        }
        
        .mv-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            padding: 4rem 3rem;
            margin: 2rem 0;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.5s ease;
            opacity: 0;
            transform: translateY(50px);
            position: relative;
            overflow: hidden;
        }
        
        .mv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #3b82f6, #ffc107);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }
        
        .mv-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .mv-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 35px 90px rgba(0, 0, 0, 0.15);
        }
        
        .mv-card:hover::before {
            transform: scaleX(1);
        }
        
        .card-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2.5rem auto;
            transition: all 0.5s ease;
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
        }
        
        .card-icon i {
            font-size: 3.5rem;
            color: #ffffff;
            transition: all 0.5s ease;
        }
        
        .mv-card:hover .card-icon {
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 20px 50px rgba(255, 193, 7, 0.4);
        }
        
        .mv-card:hover .card-icon i {
            color: #1e3a8a;
            transform: scale(1.1);
        }
        
        .card-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e3a8a;
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .card-content {
            font-size: 1.3rem;
            color: #475569;
            line-height: 1.8;
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .card-emphasis {
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            padding: 1.5rem;
            border-radius: 20px;
            border-left: 6px solid #3b82f6;
            margin-top: 2rem;
        }
        
        .card-emphasis p {
            margin: 0;
            font-style: italic;
            color: #1e40af;
            font-weight: 500;
        }
        
        .values-section {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-radius: 40px;
            padding: 60px 40px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 80px;
        }
        
        .values-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #ffffff;
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .value-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 2.5rem 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .value-item.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .value-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem auto;
            transition: all 0.4s ease;
        }
        
        .value-icon i {
            font-size: 2rem;
            color: #1e3a8a;
        }
        
        .value-item:hover .value-icon {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
        }
        
        .value-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
        }
        
        .value-description {
            color: #e2e8f0;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .cta-bottom {
            text-align: center;
            margin-top: 80px;
        }
        
        .cta-text {
            font-size: 1.5rem;
            color: #e2e8f0;
            margin-bottom: 2rem;
        }
        
        .cta-button {
            background: linear-gradient(45deg, #ffc107, #ffeb3b);
            color: #1e3a8a;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
        }
        
        .cta-button:hover {
            background: linear-gradient(45deg, #ffffff, #f8fafc);
            color: #1e3a8a;
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
            text-decoration: none;
        }
        
        @media (max-width: 768px) {
            .main-title {
                font-size: 2.5rem;
            }
            
            .main-subtitle {
                font-size: 1.2rem;
            }
            
            .mv-card {
                padding: 3rem 2rem;
                margin: 1rem 0;
            }
            
            .card-title {
                font-size: 2rem;
            }
            
            .card-content {
                font-size: 1.1rem;
            }
            
            .values-section {
                padding: 40px 20px;
            }
            
            .values-title {
                font-size: 2.2rem;
            }
            
            .value-item {
                padding: 2rem 1.5rem;
            }
            
            .card-icon {
                width: 100px;
                height: 100px;
            }
            
            .card-icon i {
                font-size: 3rem;
            }
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }
        
        .contact-section {
            background: #fff;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }
        
        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(255, 193, 7, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
        
        .floating-icon {
            position: absolute;
            color: rgba(59, 130, 246, 0.1);
            font-size: 2rem;
            animation: floatIcon 15s ease-in-out infinite;
        }
        
        .floating-icon:nth-child(1) {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-icon:nth-child(2) {
            top: 25%;
            right: 15%;
            font-size: 1.5rem;
            animation-delay: 5s;
        }
        
        .floating-icon:nth-child(3) {
            bottom: 30%;
            left: 20%;
            font-size: 1.8rem;
            animation-delay: 10s;
        }
        
        .floating-icon:nth-child(4) {
            bottom: 15%;
            right: 25%;
            font-size: 1.3rem;
            animation-delay: 3s;
        }
        
        @keyframes floatIcon {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
            50% { transform: translateY(-30px) rotate(5deg); opacity: 0.2; }
        }
        
        .section-content {
            position: relative;
            z-index: 2;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .section-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1e3a8a;
            margin-bottom: 1rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #ffc107);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .contact-info-card {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            border-radius: 30px;
            padding: 3rem;
            color: #ffffff;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(30, 58, 138, 0.2);
        }
        
        .contact-info-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .contact-info-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
        }
        
        .contact-info-subtitle {
            font-size: 1.2rem;
            color: #e2e8f0;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover {
            transform: translateX(10px);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .contact-icon i {
            font-size: 1.5rem;
            color: #1e3a8a;
        }
        
        .contact-item:hover .contact-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 25px rgba(255, 193, 7, 0.3);
        }
        
        .contact-details h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #ffc107;
        }
        .contact-details{
            text-align: left;
        }
        .contact-details p {
            margin: 0;
            color: #e2e8f0;
            font-size: 1rem;
        }
        
        .contact-details a {
            color: #e2e8f0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-details a:hover {
            color: #ffc107;
        }
        
        .social-links {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 2;
        }
        
        .social-links h4 {
            color: #ffc107;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            margin-right: 1rem;
            margin-bottom: 1rem;
            color: #ffffff;
            text-decoration: none;
            font-size: 1.3rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .social-link:hover {
            background: #ffc107;
            color: #1e3a8a;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
        }
        
        .contact-form-card {
            background: #ffffff;
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 25px 70px rgba(30, 58, 138, 0.1);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }
        
        .contact-form-card:hover {
            border-color: #3b82f6;
            box-shadow: 0 35px 90px rgba(30, 58, 138, 0.15);
        }
        
        .form-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .form-subtitle {
            color: #64748b;
            text-align: center;
            margin-bottom: 2.5rem;
            font-size: 1.1rem;
        }
        
        .form-group {
            margin-bottom: 2rem;
            position: relative;
        }
        
        .form-label {
            display: block;
            font-weight: 600;
            color: #1e3a8a;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }
        
        .form-control {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #ffffff;
            outline: none;
        }
        
        .form-control:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
            transform: translateY(-2px);
        }
        
        .form-control:hover {
            border-color: #3b82f6;
        }
        
        .form-control::placeholder {
            color: #94a3b8;
            opacity: 1;
        }
        
        .form-select {
            width: 100%;
            padding: 1rem 1.5rem;
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #ffffff;
            outline: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 1rem center;
            background-repeat: no-repeat;
            background-size: 1rem;
            padding-right: 3rem;
        }
        
        .form-select:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
            transform: translateY(-2px);
        }
        
        .form-select:hover {
            border-color: #3b82f6;
        }
        
        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .form-check {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }
        
        .form-check-input {
            width: 20px;
            height: 20px;
            margin-right: 0.75rem;
            accent-color: #3b82f6;
        }
        
        .form-check-label {
            color: #64748b;
            font-size: 0.75rem;
            line-height: 1.5;
            text-align: left;
        }
        
        .form-check-label a {
            color: #3b82f6;
            text-decoration: none;
        }
        
        .form-check-label a:hover {
            color: #1e40af;
            text-decoration: underline;
        }
        
        .submit-button {
            width: 100%;
            background: linear-gradient(45deg, #3b82f6, #1e40af);
            color: #ffffff;
            border: none;
            padding: 1.2rem 2rem;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
        }
        
        .submit-button:hover {
            background: linear-gradient(45deg, #ffc107, #ffeb3b);
            color: #1e3a8a;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
        }
        
        .submit-button:active {
            transform: translateY(-1px);
        }
        
        .required {
            color: #ef4444;
        }
        
        .map-section {
            margin-top: 80px;
            background: #ffffff;
            border-radius: 30px;
            padding: 3rem;
            box-shadow: 0 25px 70px rgba(30, 58, 138, 0.1);
            text-align: center;
        }
        
        .map-title {
            font-size: 2rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 1rem;
        }
        
        .map-subtitle {
            color: #64748b;
            margin-bottom: 2rem;
        }
        
        .map-placeholder {
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            border-radius: 20px;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 3px dashed #3b82f6;
            color: #3b82f6;
            font-size: 1.2rem;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2.5rem;
            }
            
            .contact-info-card,
            .contact-form-card {
                padding: 2rem;
                margin-bottom: 2rem;
            }
            
            .contact-info-title {
                font-size: 2rem;
            }
            
            .form-title {
                font-size: 1.8rem;
            }
            
            .contact-item {
                margin-bottom: 1.5rem;
            }
            
            .contact-icon {
                width: 50px;
                height: 50px;
                margin-right: 1rem;
            }
            
            .contact-icon i {
                font-size: 1.3rem;
            }
            
            .map-section {
                padding: 2rem;
            }
            
            .map-placeholder {
                height: 250px;
                font-size: 1rem;
            }
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.7;
            margin: 0;
            padding: 0;
            background: #f8fafc;
        }
        
        .privacy-header {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
            padding: 120px 0 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .privacy-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 1;
        }
        
        .floating-icon {
            position: absolute;
            color: rgba(255, 255, 255, 0.1);
            font-size: 2rem;
            animation: floatIcon 20s ease-in-out infinite;
        }
        
        .floating-icon:nth-child(1) {
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-icon:nth-child(2) {
            top: 30%;
            right: 15%;
            font-size: 1.5rem;
            animation-delay: 7s;
        }
        
        .floating-icon:nth-child(3) {
            bottom: 30%;
            left: 20%;
            font-size: 1.8rem;
            animation-delay: 14s;
        }
        
        @keyframes floatIcon {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.1; }
            50% { transform: translateY(-40px) rotate(5deg); opacity: 0.2; }
        }
        
        .header-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .page-title {
            font-size: 4rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 1.5rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .page-subtitle {
            font-size: 1.3rem;
            color: #e2e8f0;
            max-width: 700px;
            margin: 0 auto 2rem auto;
        }
        
        .last-updated {
            background: rgba(255, 193, 7, 0.2);
            color: #ffc107;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            display: inline-block;
            font-weight: 600;
            border: 1px solid rgba(255, 193, 7, 0.3);
        }
        
        .privacy-content {
            background: #ffffff;
            margin-top: -50px;
            position: relative;
            z-index: 3;
            border-radius: 30px 30px 0 0;
            box-shadow: 0 -10px 50px rgba(30, 58, 138, 0.1);
        }
        
        .content-wrapper {
            padding: 80px 0;
        }
        
        .table-of-contents {
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            border-radius: 25px;
            padding: 2.5rem;
            margin-bottom: 4rem;
            border: 2px solid #bfdbfe;
        }
        
        .toc-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .toc-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .toc-item {
            margin-bottom: 0.75rem;
        }
        
        .toc-link {
            color: #3b82f6;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0;
            display: block;
            border-radius: 10px;
            padding-left: 1rem;
            transition: all 0.3s ease;
        }
        
        .toc-link:hover {
            background: rgba(59, 130, 246, 0.1);
            color: #1e40af;
            padding-left: 1.5rem;
        }
        
        .toc-link::before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            margin-right: 0.5rem;
            color: #ffc107;
        }
        
        .policy-section {
            margin-bottom: 4rem;
            scroll-margin-top: 100px;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1e3a8a;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 1rem;
        }
        
        
        .section-content {
            color: #475569;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .section-content p {
            margin-bottom: 1.5rem;
        }
        
        .section-content strong {
            color: #1e3a8a;
            font-weight: 600;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            border-left: 6px solid #ffc107;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.1);
        }
        
        .highlight-box h4 {
            color: #1e3a8a;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .highlight-box p {
            margin-bottom: 0;
            color: #374151;
        }
        
        .info-card {
            background: #ffffff;
            border: 2px solid #e2e8f0;
            border-radius: 20px;
            padding: 2rem;
            margin: 2rem 0;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(30, 58, 138, 0.05);
        }
        
        .info-card:hover {
            border-color: #3b82f6;
            box-shadow: 0 15px 40px rgba(30, 58, 138, 0.1);
            transform: translateY(-5px);
        }
        
        .info-card-title {
            color: #1e3a8a;
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .data-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
        }
        
        .data-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #e2e8f0;
            position: relative;
            padding-left: 2rem;
            color: #475569;
        }
        
        .data-list li:last-child {
            border-bottom: none;
        }
        
        .data-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #10b981;
            font-size: 0.9rem;
        }
        
        .contact-content {
            position: relative;
            z-index: 2;
        }
        
        .contact-title {
            font-size: 2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
        }
        
        .contact-text {
            color: #e2e8f0;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
        
        .contact-button {
            background: linear-gradient(45deg, #ffc107, #ffeb3b);
            color: #1e3a8a;
            padding: 1rem 2.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
        }
        
        .contact-button:hover {
            background: linear-gradient(45deg, #ffffff, #f8fafc);
            color: #1e3a8a;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
            text-decoration: none;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .back-to-top:hover {
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            color: #1e3a8a;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .page-subtitle {
                font-size: 1.1rem;
            }
            
            .table-of-contents,
            .info-card,
            .contact-section {
                padding: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-content {
                font-size: 1rem;
            }
            
            .content-wrapper {
                padding: 60px 0;
            }
        }
    .content-spacer {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            font-size: 1.2rem;
        }
        
        .footer {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e40af 100%);
            position: relative;
            overflow: hidden;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, rgba(255, 193, 7, 0.08) 0%, transparent 50%),
                linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
            pointer-events: none;
        }
        
        .footer-content {
            position: relative;
            z-index: 2;
        }
        
        .footer-main {
            padding: 80px 0 60px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-brand {
            margin-bottom: 2rem;
        }
        
        .brand-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffffff;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .brand-logo:hover {
            color: #ffc107;
            transform: translateX(5px);
        }
        
        .brand-logo i {
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            color: #1e3a8a;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .brand-description {
            color: #e2e8f0;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            max-width: 350px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .social-link:hover {
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            color: #1e3a8a;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
        }
        
        .footer-section-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffc107;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .footer-section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #ffc107, #ffeb3b);
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.25rem 0;
        }
        
        .footer-links a:hover {
            color: #ffc107;
            transform: translateX(5px);
        }
        
        .footer-links a::before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.8rem;
            opacity: 0.6;
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .contact-info li {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            color: #e2e8f0;
        }
        
        .contact-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1e3a8a;
            font-size: 1rem;
            flex-shrink: 0;
        }
        
        .contact-details {
            flex: 1;
        }
        
        .contact-details strong {
            color: #ffffff;
            display: block;
            margin-bottom: 0.25rem;
            font-weight: 600;
        }
        
        .contact-details a {
            color: #e2e8f0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-details a:hover {
            color: #ffc107;
        }
        
        .newsletter-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .newsletter-title {
            color: #ffffff;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .newsletter-description {
            color: #e2e8f0;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }
        
        .newsletter-form {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            font-size: 0.95rem;
            outline: none;
            transition: all 0.3s ease;
        }
        
        .newsletter-input::placeholder {
            color: #cbd5e1;
        }
        
        .newsletter-input:focus {
            border-color: #ffc107;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
        }
        
        .newsletter-button {
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            color: #1e3a8a;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }
        
        .newsletter-button:hover {
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
        }
        
        .newsletter-disclaimer {
            font-size: 0.8rem;
            color: #cbd5e1;
            line-height: 1.4;
        }
        
        .footer-bottom {
            padding: 30px 0;
            background: rgba(0, 0, 0, 0.2);
        }
        
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .copyright {
            color: #e2e8f0;
            font-size: 0.95rem;
        }
        
        .copyright strong {
            color: #ffc107;
        }
        
        .legal-links {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .legal-links a {
            color: #e2e8f0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }
        
        .legal-links a:hover {
            color: #ffc107;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ffc107, #ffeb3b);
            color: #1e3a8a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.2rem;
            box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .back-to-top:hover {
            background: linear-gradient(135deg, #3b82f6, #1e40af);
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
        }
        
        @media (max-width: 768px) {
            .footer-main {
                padding: 60px 0 40px 0;
            }
            
            .brand-logo {
                font-size: 1rem;
                justify-content: center;
                text-align: center;
            }
            
            .brand-description {
                text-align: center;
                max-width: 100%;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-button {
                justify-content: center;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
            
            .legal-links {
                justify-content: center;
            }
            
            .contact-info li {
                flex-direction: column;
                text-align: center;
                gap: 0.75rem;
            }
        }
        
        @media (max-width: 576px) {
            .social-links {
                gap: 0.75rem;
            }
            
            .social-link {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            
            .legal-links {
                flex-direction: column;
                gap: 1rem;
            }
        }