  :root {
            --primary: #CB2E2C;
            --secondary: #F57F22;
            --success: #00A14D;
            --dark: #132456;
            --light: #f8f9fa;
            --gray: #6c757d;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navigation */
        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
        }
        
        .logo span {
            color: var(--primary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-menu li {
            margin-left: 30px;
        }
        
        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--primary);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--dark);
        }
        
        /* Hero Section */
        .hero {
            padding: 150px 0 100px;
            background: linear-gradient(135deg, rgba(203,46,44,0.05) 0%, rgba(245,127,34,0.05) 100%);
        }
        
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        
        .hero-text {
            flex: 1;
            min-width: 300px;
            padding-right: 40px;
        }
        
        .hero-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .hero-image img {
            max-width: 100%;
            height: auto;
        }
        
        .hero h1 {
            font-size: 3rem;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero h1 span {
            color: var(--primary);
        }
        
        .hero p {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 30px;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
        }
        
        .btn-primary {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: #b02523;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(203,46,44,0.3);
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            color: var(--white);
        }
        
        .btn-secondary:hover {
            background-color: #e06e1a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(245,127,34,0.3);
        }
        
        .btn-success {
            background-color: var(--success);
            color: var(--white);
        }
        
        .btn-success:hover {
            background-color: #008c42;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,161,77,0.3);
        }
        
        .btn-dark {
            background-color: var(--dark);
            color: var(--white);
        }
        
        .btn-dark:hover {
            background-color: #0f1c47;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(19,36,86,0.3);
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s;
            background-color: var(--light);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--white);
        }
        
        .icon-1 {
            background-color: var(--primary);
        }
        
        .icon-2 {
            background-color: var(--secondary);
        }
        
        .icon-3 {
            background-color: var(--success);
        }
        
        .icon-4 {
            background-color: var(--dark);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        /* Download Section */
        .download {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(19,36,86,0.9) 0%, rgba(19,36,86,0.95) 100%), url('https://images.unsplash.com/photo-1551650975-87deedd944c3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
        }
        
        .download h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .download p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        .download-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .store-btn {
            display: flex;
            align-items: center;
            background-color: var(--white);
            color: var(--dark);
            padding: 15px 25px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s;
        }
        
        .store-btn:hover {
            transform: translateY(-5px);
        }
        
        .store-btn i {
            font-size: 2rem;
            margin-right: 15px;
        }
        
        .store-btn .btn-text {
            text-align: left;
        }
        
        .store-btn .btn-text span {
            font-size: 0.9rem;
            font-weight: 400;
            display: block;
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        
        .footer-column {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }
        
        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: var(--white);
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 15px;
        }
        
        .footer-column ul li a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--white);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }
        
        /* Page Containers */
        .page-container {
            max-width: 800px;
            margin: 120px auto 60px;
            padding: 50px;
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .page-container h1 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 20px;
        }
        
        .page-container p {
            color: var(--gray);
            margin-bottom: 30px;
        }
        
        /* Form Styles */
        .form-container {
            max-width: 500px;
            margin: 120px auto 60px;
            padding: 50px;
            background-color: var(--white);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
        }
        
        .form-container h1 {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 10px;
        }
        
        .form-container p {
            color: var(--gray);
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 25px;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary);
        }
        
        .form-footer {
            margin-top: 30px;
            text-align: center;
        }
        
        .form-footer a {
            color: var(--primary);
            text-decoration: none;
        }
        
        .form-footer a:hover {
            text-decoration: underline;
        }
        
        /* Tab Navigation */
        .tab-navigation {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .tab-link {
            padding: 12px 25px;
            margin: 0 10px 10px;
            background-color: rgba(19,36,86,0.1);
            color: var(--dark);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .tab-link.active, .tab-link:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-content {
                flex-direction: column;
            }
            
            .hero-text {
                padding-right: 0;
                margin-bottom: 50px;
                text-align: center;
            }
            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background-color: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.05);
                padding: 20px 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 15px 0;
            }
            
            .hamburger {
                display: block;
            }

            .address-container, .methods-container {
                flex-direction: column;
            }
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .download h2 {
                font-size: 2rem;
            }
            
            .page-container, .form-container {
                padding: 30px 20px;
                margin: 100px 20px 40px;
            }

            .address-info, .method-card {
                padding: 30px 20px;
            }
        }

        /* Contact Header */
        .contact-header {
            background: linear-gradient(135deg, rgba(19,36,86,0.9) 0%, rgba(19,36,86,0.95) 100%), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 120px 0 80px;
            text-align: center;
        }
        
        .contact-header h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .contact-header p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* Address Section */
        .address-section {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .address-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .address-info {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            border-radius: 15px;
            background-color: var(--light);
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .address-info:hover {
            transform: translateY(-10px);
        }
        
        .address-info.primary {
            border-top: 5px solid var(--primary);
        }
        
        .address-info.secondary {
            border-top: 5px solid var(--secondary);
        }
        
        .address-info.success {
            border-top: 5px solid var(--success);
        }
        
        .address-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.8rem;
            color: var(--white);
        }
        
        .icon-primary {
            background-color: var(--primary);
        }
        
        .icon-secondary {
            background-color: var(--secondary);
        }
        
        .icon-success {
            background-color: var(--success);
        }
        
        .address-info h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .address-details {
            margin-bottom: 25px;
        }
        
        .address-details p {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .address-details i {
            margin-right: 12px;
            color: var(--primary);
            margin-top: 3px;
        }
        
        .address-hours {
            background-color: rgba(19,36,86,0.05);
            padding: 20px;
            border-radius: 10px;
            margin-top: 25px;
        }
        
        .address-hours h4 {
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        
        .address-hours ul {
            list-style: none;
        }
        
        .address-hours li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px dashed rgba(0,0,0,0.1);
        }
        
        .address-hours li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        /* Map Section */
        .map-section {
            padding: 0 0 100px;
        }
        
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 450px;
            position: relative;
        }
        
        .map-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(19,36,86,0.1) 0%, rgba(203,46,44,0.1) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            text-align: center;
            padding: 20px;
        }
        
        .map-placeholder i {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .map-placeholder h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        /* Contact Methods */
        .contact-methods {
            padding: 80px 0;
            background-color: var(--light);
        }
        
        .methods-container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .method-card {
            flex: 1;
            min-width: 250px;
            padding: 40px 30px;
            border-radius: 15px;
            background-color: var(--white);
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .method-card:hover {
            transform: translateY(-10px);
        }
        
        .method-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--white);
        }
        
        .method-1 {
            background-color: var(--primary);
        }
        
        .method-2 {
            background-color: var(--secondary);
        }
        
        .method-3 {
            background-color: var(--success);
        }
        
        .method-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .method-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .method-contact {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark);
            text-decoration: none;
            display: block;
            margin-top: 15px;
        }
        
        .method-contact:hover {
            color: var(--primary);
        }

        .swal2-container{
            background: none !important;
        }