
        :root {
            --primary: #e50914;
            --secondary: #000000;
            --accent: #ffffff;
            --light: #ffffff;
            --success: #27ae60;
            --header-height: 70px;
            --mobile-header-height: 60px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #ffffff;
            color: var(--secondary);
            line-height: 1.6;
            font-family: 'Roboto', sans-serif;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--secondary);
        }

        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 14px 28px;
            border-radius: 4px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }

        .btn:hover {
            background: #c10510;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,极.15);
        }

        .btn-whatsapp {
            background: #25D366;
        }

        .btn-whatsapp:hover {
            background: #128C7E;
        }

        .btn-outline {
            background: transparent;
            color: var(--accent);
            border: 2px solid var(--accent);
        }

        .btn-outline:hover {
            background: var(--accent);
            color: var(--primary);
        }

        /* Header Styles - Enhanced */
        header {
            background: var(--secondary);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: var(--header-height);
        }

        .logo-container {
            display: flex;
            align-items: center;
            z-index: 1002;
        }

        .logo {
            height: 45px;
            width: auto;
            display: block;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: flex;
            align-items: center;
        }

        .desktop-nav ul {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 35px;
        }

        .desktop-nav .menu-link {
            color: var(--accent);
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            letter-spacing: 0.5px;
            position: relative;
            padding: 5px 0;
        }

        .desktop-nav .menu-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .desktop-nav .menu-link:hover::after {
            width: 100%;
        }

        /* Desktop Dropdown */
        .desktop-nav .has-dropdown {
            position: relative;
        }

        .desktop-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 260px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .desktop-nav .has-dropdown:hover .desktop-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .desktop-dropdown a {
            display: block;
            padding: 12px 20px;
            color: var(--secondary);
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .desktop-dropdown a:last-child {
            border-bottom: none;
        }

        .desktop-dropdown a:hover {
            background: #f8f8f8;
            color: var(--primary);
            padding-left: 25px;
        }

        /* Mobile Menu Button - Enhanced Hamburger */
        .mobile-menu-btn {
            display: none;
            width: 30px;
            height: 30px;
            position: relative;
            cursor: pointer;
            z-index: 1002;
            background: none;
            border: none;
            padding: 0;
        }

        .hamburger {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 22px;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--accent);
            margin: 5px 0;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border-radius: 2px;
        }

        .mobile-menu-btn.active .hamburger span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active .hamburger span:nth-child(2) {
            opacity: 0;
            transform: translateX(-20px);
        }

        .mobile-menu-btn.active .hamburger span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Navigation - Full Screen Overlay Style */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 400px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 20px;
        }

        .mobile-nav-content::-webkit-scrollbar {
            width: 5px;
        }

        .mobile-nav-content::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
        }

        .mobile-nav-content::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }

        .mobile-menu-list {
            list-style: none;
        }

        .mobile-menu-item {
            margin-bottom: 10px;
            opacity: 0;
            transform: translateY(20px);
            animation: slideIn 0.5s ease forwards;
        }

        .mobile-nav.active .mobile-menu-item {
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu-item:nth-child(1) { animation-delay: 0.1s; }
        .mobile-menu-item:nth-child(2) { animation-delay: 0.15s; }
        .mobile-menu-item:nth-child(3) { animation-delay: 0.2s; }
        .mobile-menu-item:nth-child(4) { animation-delay: 0.25s; }
        .mobile-menu-item:nth-child(5) { animation-delay: 0.3s; }

        @keyframes slide {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-menu-link {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            color: white;
            font-size: 18px;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-link:hover {
            background: rgba(229, 9, 20, 0.2);
            border-color: var(--primary);
            transform: translateX(5px);
        }

        .mobile-dropdown-toggle {
            background: none;
            border: none;
            color: white;
            padding: 0;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .mobile-dropdown-toggle.active {
            transform: rotate(180deg);
        }

        .mobile-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            margin-top: 10px;
        }

        .mobile-submenu.active {
            max-height: 500px;
        }

        .mobile-submenu-list {
            list-style: none;
            padding-left: 20px;
        }

        .mobile-submenu-item {
            margin-bottom: 8px;
        }

        .mobile-submenu-link {
            display: block;
            padding: 10px 15px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 6px;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }

        .mobile-submenu-link:hover {
            color: white;
            background: rgba(229, 9, 20, 0.15);
            border-left-color: var(--primary);
            transform: translateX(5px);
        }

        /* Mobile Contact Info */
        .mobile-nav-footer {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            display: none;
        }

        .mobile-contact-info {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .mobile-contact-info a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }

        .mobile-contact-info a:hover {
            background: var(--primary);
            transform: scale(1.1);
        }

        /* Main Content Sections */
        section {
            padding: 80px 0;
        }

        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1581091226033-d5c48150dbaa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 180px 0 150px;
            margin-top: var(--header-height);
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 40px;
            color: var(--accent);
        }

        .services {
            background: var(--light);
        }

        .section-title {
            position: relative;
            margin-bottom: 50px;
            font-size: 36px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
        }

        .text-center {
            text-align: center;
        }

        .text-center.section-title:after {
            left: 50%;
            transform: translateX(-50%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }

        .service-content {
            padding: 30px;
        }

        .service-icon {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .service-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .read-more {
            display: inline-block;
            margin-top: 15px;
            font-weight: 600;
            color: var(--primary);
            font-family: 'Montserrat', sans-serif;
        }

        .blog {
            padding: 80px 0;
        }

        .blog-posts {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .blog-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }

        .blog-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }

        .blog-content {
            padding: 25px;
        }

        .blog-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .cta {
            background: var(--secondary);
            color: white;
            text-align: center;
            padding: 80px 0;
        }

        .cta h2 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 36px;
            text-transform: uppercase;
        }

        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
            color: var(--accent);
        }

        footer {
            background: var(--secondary);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 25px;
            font-size: 18px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
        }

        .footer-column ul {
            list-style: none;
            margin-bottom: 20px;
        }

        .footer-column ul li {
            margin-bottom: 12px;
           
        }

        .footer-column ul li a {
            color: #ccc;
            transition: all 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .contact-info {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            color: #ccc;
        }

        .contact-info i {
            margin-right: 12px;
            color: var(--primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #999;
            font-size: 14px;
        }

        .footer-bottom a {
            color: #ccc;
            transition: all 0.3s ease;
        }

        .footer-bottom a:hover {
            color: var(--primary);
        }

        /* Content Section Styles */
        .content-section {
            padding: 80px 0;
        }

        .content-section h2 {
            font-size: 36px;
            margin-bottom: 30px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 15px;
        }

        .content-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary);
        }

        .content-section h3 {
            font-size: 24px;
            margin: 25px 0 15px;
            color: var(--secondary);
        }

        .content-section p {
            margin-bottom: 20px;
            font-size: 18px;
            line-height: 1.7;
        }

        .content-section ul {
            margin-bottom: 30px;
            padding-left: 30px;
        }

        .content-section li {
            margin-bottom: 15px;
            font-size: 18px;
            line-height: 1.6;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .benefit-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border-top: 4px solid var(--primary);
        }

        .benefit-card h4 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--secondary);
        }

        .steps-container {
            margin: 40px 0;
        }

        .step {
            display: flex;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .step-number {
            background: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .step-content {
            flex: 1;
        }

        .step-content h4 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--secondary);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .comparison-table th, .comparison-table td {
            padding: 15px;
            text-align: left;
            border: 1px solid #e0e0e0;
        }

        .comparison-table th {
            background-color: var(--secondary);
            color: white;
        }

        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        /* FAQ Section Styles */
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 18px;
            background: #f8f9fa;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #e8f4fc;
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 20px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .header-container {
                height: var(--mobile-header-height);
            }

            .desktop-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .mobile-nav {
                display: block;
            }

            .hero {
                margin-top: var(--mobile-header-height);
                padding: 120px 0 100px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 18px;
            }
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 28px;
            }

            .services-grid,
            .blog-posts {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .section-title {
                font-size: 28px;
            }

            .content-section h2 {
                font-size: 28px;
            }

            .content-section h3 {
                font-size: 22px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .step {
                flex-direction: column;
            }

            .step-number {
                margin-bottom: 15px;
            }
        }

        /* Mobile Close Button - Added */
        .mobile-close-btn {
            position: fixed;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1003;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transition: background 0.3s ease;
        }

        .mobile-close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
        }
 