
        :root {
            --primary: #003c71;
            --secondary: #23C0E9;
            --accent: #FF6B35;
            --light: #f8f9fa;
            --dark: #343a40;
            --gray: #6c757d;
            --success: #28a745;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f7fa;
            overflow-x: hidden;
        }

        /* WhatsApp Button Styles */
        .whatsapp-btn {
            background: #128C7E;
            color: white !important;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
        }
        
        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
        }
        
        .whatsapp-btn:after {
            display: none;
        }
        
        .whatsapp-btn i {
            font-size: 24px;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Poppins', sans-serif;
        }
        
        .btn-primary {
            background: var(--secondary);
            color: white;
        }
        
        .btn-primary:hover {
            background: #1a9dc5;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(35, 192, 233, 0.3);
        }
        
        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-outline:hover {
            background: white;
            color: var(--primary);
        }
        
        .btn-block {
            display: block;
            width: 100%;
        }
        
        .btn-large {
            padding: 12px 30px;
            font-size: 1.1rem;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background: var(--secondary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Fixed Preloader */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        #preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        #status {
            text-align: center;
        }
        
        .loader {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(0, 60, 113, 0.2);
            border-radius: 50%;
            border-top-color: var(--secondary);
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
        
        /* New Navbar */
        .new-navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        
        .new-navbar.sticky {
            background-color: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .new-logo {
            display: flex;
            align-items: center;
        }
        
        .new-logo-img {
            height: 50px;
            margin-right: 10px;
        }
        
        .new-logo-text {
            font-weight: 700;
            font-size: 24px;
            color: var(--primary);
        }
        
        .new-logo-text span {
            color: var(--secondary);
        }
        
        .new-nav-menu {
            display: flex;
            align-items: center;
        }
        
        .new-nav-menu ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .new-nav-menu li {
            margin: 0 15px;
            position: relative;
        }
        
        .new-nav-menu a {
            color: var(--primary);
            font-weight: 500;
            text-decoration: none;
            padding: 8px 0;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .new-nav-menu a:hover {
            color: var(--secondary);
        }
        
        .new-nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        
        .new-nav-menu a:hover:after {
            width: 100%;
        }
        
        .nav-cta-btn {
            background: var(--secondary);
            color: white !important;
            padding: 8px 20px !important;
            border-radius: 30px;
            margin-left: 10px;
        }
        
        .nav-cta-btn:hover {
            background: #1a9dc5;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(35, 192, 233, 0.3);
        }
        
        .nav-cta-btn:after {
            display: none;
        }
        
        /* Mobile menu styles */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary);
            cursor: pointer;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            background: #f8f9fa;
            padding: 15px 0;
            margin-top: 80px;
        }
        
        .breadcrumb-content {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }
        
        .breadcrumb a {
            color: var(--gray);
        }
        
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        
        .breadcrumb span {
            color: var(--primary);
            font-weight: 500;
        }
        
        /* Contact Hero */
        .contact-hero {
            background: linear-gradient(rgba(0, 60, 113, 0.9), rgba(0, 60, 113, 0.9)), 
                        url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .contact-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Contact Content */
        .contact-content {
            padding: 80px 0;
            background: white;
        }
        
        .contact-wrapper {
            display: flex;
            gap: 50px;
        }
        
        .contact-info {
            flex: 1;
        }
        
        .contact-form {
            flex: 1;
        }
        
        .info-card {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            border-left: 4px solid var(--secondary);
        }
        
        .info-card h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        
        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(35, 192, 233, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        .contact-icon i {
            font-size: 20px;
            color: var(--secondary);
        }
        
        .contact-details h4 {
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .contact-details p {
            color: var(--gray);
            margin-bottom: 5px;
        }
        
        .contact-link {
            color: var(--secondary);
            font-weight: 500;
        }
        
        .social-contact {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }
        
        .social-contact a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(35, 192, 233, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-contact a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        .social-contact i {
            color: var(--secondary);
            transition: all 0.3s ease;
        }
        
        .social-contact a:hover i {
            color: white;
        }
        
        /* Contact Form */
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border-radius: 5px;
            border: 1px solid #ddd;
            font-family: 'Roboto', sans-serif;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(35, 192, 233, 0.1);
            outline: none;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            color: var(--primary);
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: #f8f9fa;
        }
        
        .faq-question i {
            color: var(--secondary);
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 25px 20px;
            max-height: 500px;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* Map Section */
        .map-section {
            padding: 0;
        }
        
        .map-container {
            height: 400px;
            width: 100%;
        }
        
        .map-placeholder {
            height: 100%;
            background: #e9ecef;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--gray);
        }
        
        .map-placeholder i {
            font-size: 50px;
            margin-bottom: 15px;
            color: var(--secondary);
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 70px 0 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
        }
        
        .footer-column p {
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            opacity: 0.8;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .footer-links i {
            color: var(--secondary);
            font-size: 0.8rem;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-bottom p {
            opacity: 0.7;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .new-nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                padding: 20px;
                flex-direction: column;
                z-index: 1000;
            }
            
            .new-nav-menu.active {
                display: flex;
            }
            
            .new-nav-menu ul {
                flex-direction: column;
                width: 100%;
            }
            
            .new-nav-menu li {
                margin: 10px 0;
                width: 100%;
            }
            
            .new-nav-menu a {
                display: block;
                padding: 10px 0;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .nav-cta-btn {
                margin: 10px 0 0 0;
                text-align: center;
            }
            
            .contact-hero h1 {
                font-size: 2.5rem;
            }
            
            .contact-wrapper {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2rem;
            }
            
            .form-row {
                flex-direction: column;
                gap: 0;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .contact-hero {
                padding: 60px 0;
            }
            
            .info-card {
                padding: 20px;
            }
        }
    