        /* General Styles */
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f2f2f2;
            overflow-x: hidden;
        }

        .fixed {
        position: fixed;
        top: 0;
        height: 60px;
        background-color: #000 !important;
        width: 100%;
        color: #fff;
        text-transform: uppercase;
        font-weight: 700;
        text-align: center;
        z-index: 9999;
        animation: appear 2s ease-in-out;          
        }

        @keyframes appear {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
            
            100% {
                transform: scale(1);
            }
        }

        /* Header Styles */
        .header {
            margin-top: 60px;
            position: relative;
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, #0e1822 0%, #1C2F40 100%);
            color: #ffffff;
            animation: fadeIn 2s ease-in-out;
        }

        /* Main Title */
        .header h1 {
            font-size: 3.2em;
            font-weight: bold;
            color: #FFFFFF;
            margin: 0;
            text-transform: uppercase;
            animation: slideInDown 1.5s ease forwards;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            padding-bottom: 10px;
        }

        /* Subtitle */
        .header h2 {
            font-size: 1.8em;
            color: #ffffff;
            margin-top: 10px;
            max-width: 800px;
            margin: 10px auto;
            font-weight: 300;
            animation: fadeInUp 2s ease forwards;
        }

        /* Decorative Effects */
        .header::before, .header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(255,255,255,0.1), transparent);
            mix-blend-mode: overlay;
            z-index: 0;
            animation: pulseEffect 8s infinite;
        }
        .header::after {
            animation-delay: 4s;
        }

        /* Animations */
        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideInDown {
            0% { opacity: 0; transform: translateY(-50px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes pulseEffect {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 0.4; }
        }

                /* Video Section Styles */
                .video-section {
            text-align: center;
            padding: 40px 20px;
            background-color: #ffffff;
            border-top: 8px solid #262626;
            /*border-bottom: 8px solid #d4417d;*/
            animation: fadeInUp 2s ease-in-out;
        }

        /* Video Container */
        .video-container {
            position: relative;
            width: 100%;
            max-width: 720px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        /* Video Frame with Hover Effect */
        .video-container iframe {
            width: 100%;
            height: 405px;
            transition: transform 0.3s ease;
            border: none;
            animation: zoomIn 1.5s ease-in-out;
        }
        .video-container iframe:hover {
            transform: scale(1.05);
        }

        /* Section Heading */
        .video-section h2 {
            font-size: 2em;
            color: #13243b;
            margin-bottom: 20px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
            animation: fadeInDown 1.5s ease;
        }

        /* Keyframe Animations */
        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInDown {
            0% { opacity: 0; transform: translateY(-20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes zoomIn {
            0% { transform: scale(0.9); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        /* Column buttons*/
        .column-buttons {
            display: flex;
            justify-content: center;
            gap: 50px;
            text-align: center;
            padding-bottom: 50px;
            border-bottom: 8px solid #403F3D;
            height: 110px;
            background-color: #fff;
        }

        /* Buttons */
        .left-button a, .right-button a {
            display: inline-block;
            padding: 15px 30px;
            align-items: center;
            justify-content: center;
            gap: 20px;
            color: #fff;
            border-radius: 5px;
            font-size: 1.2rem;
            text-decoration: none;
            box-shadow: 3px 3px 5px #bcbcbc;
            font-weight: 600;
            transition: background-color 0.3s, transform 0.2s;
            animation: bounceIn 1.5s ease-in-out;
        }

        .left-button a {
            background-color: #0c1726;
        }

        .right-button a {
            background-color: #00bb2d;
        }

    

        /* Introduction Section Styles */
        .intro-section {
            text-align: center;
            padding: 40px 20px;
            background-color: #f2f2f2;
            color: #333;
            animation: fadeInUp 1.5s ease-in-out;
            border-bottom: 5px solid #262626;
        }

        /* Introduction Text */
        .intro-section p {
            font-size: 1.2em;
            color: #555;
            max-width: 700px;
            margin: 0 auto 20px;
            line-height: 1.7;
            animation: slideIn 1.5s ease;
        }

        /* Highlighted Text */
        .intro-section .highlight {
            color: #0c1726;
            font-weight: bold;
        }

        /* CTA Button */
        .cta-button {
            display: inline-block;
            background-color: #0c1726 !important;
            color: #ffffff;
            padding: 15px 30px;
            font-size: 1.1em;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s, transform 0.2s;
            animation: bounceIn 1.5s ease-in-out;
        }
        .cta-button:hover, .left-button a:hover, .right-button a:hover, .appointment-btn:hover {
            background-color: #000 !important;
            transform: scale(1.05);
        }
        
        .right-button a:hover {
            background-color: #009b25;
        }

        /* Keyframe Animations */
        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideIn {
            0% { opacity: 0; transform: translateX(-100px); }
            100% { opacity: 1; transform: translateX(0); }
        }
        @keyframes bounceIn {
            0% { transform: scale(0.9); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

                /* Benefits Section Styles */
                .benefits-section {
            text-align: center;
            padding: 20px 20px;
            background-color: #f4f4f9;
            color: #333;
            animation: fadeIn 2s ease-in-out;
        }

        /* Heading for Benefits Section */
        .benefits-section h2 {
            font-size: 2.2em;
            color: #13243b;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
            animation: fadeInDown 1.5s ease;
        }

        /* Benefit Box Style */
        .benefit-box {
            margin: 20px auto;
            max-width: 750px;
            background-color: #ffffff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            text-align: left;
            display: flex;
            align-items: center;
            animation: slideIn 1.5s ease;
        }

        /* Image Style */
        .benefit-box img {
            width: 150px;
            height: 150px;
            border-radius: 10px;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        .benefit-box img:hover {
            transform: scale(1.05);
        }

        /* Benefit Text Style */
        .benefit-box h3 {
            font-size: 1.6em;
            color: #0c1726;
            margin: 0;
        }
        .benefit-box p {
            color: #555;
            font-size: 1.1em;
            line-height: 1.6;
            margin-top: 10px;
        }

        /* Keyframe Animations */
        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        @keyframes fadeInDown {
            0% { opacity: 0; transform: translateY(-20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideIn {
            0% { opacity: 0; transform: translateX(-30px); }
            100% { opacity: 1; transform: translateX(0); }
        }

                /* Cost Comparison Section */
                .cost-section {
            text-align: center;
            padding: 10px 20px 40px;
            background-color: #979fa61f;
            color: #333;
            animation: fadeIn 2s ease-in-out;
        }

        /* Heading */
        .cost-section h2 {
            font-size: 2.2em;
            color: #13243b;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
            animation: fadeInDown 1.5s ease;
        }

        /* Description */
        .cost-section p {
            font-size: 1.2em;
            color: #555;
            max-width: 700px;
            margin: 0 auto 30px;
            line-height: 1.7;
            animation: fadeInUp 1.5s ease;
        }

        /* Comparison Table */
        .comparison-table {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            border-collapse: collapse;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
            animation: fadeIn 2s ease;
        }
        .comparison-table th, .comparison-table td {
            padding: 15px;
            text-align: center;
            font-size: 1.1em;
        }
        .comparison-table th {
            background-color: #13243b;
            color: #ffffff;
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f4f4f9;
        }
        .comparison-table tr:nth-child(odd) {
            background-color: #ffffff;
        }

        /* Savings Row */
        .savings-row {
            background-color: #ffd1e1;
            font-size: 1.2em;
            color: #13243b;
            font-weight: bold;
        }

        /* Supporting Image */
        .savings-image {
            width: 100%;
            max-width: 700px;
            margin-top: 30px;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            animation: zoomIn 2s ease;
        }

        /* Keyframe Animations */
        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        @keyframes fadeInDown {
            0% { opacity: 0; transform: translateY(-20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes zoomIn {
            0% { transform: scale(0.9); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

                /* Additional Services Section */
                .services-section {
            text-align: center;
            padding: 10px 20px;
            background-color: #ffffff;
            color: #333;
            animation: fadeIn 2s ease-in-out;
        }

        /* Heading */
        .services-section h2 {
            font-size: 2.2em;
            color: #13243b;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
            animation: fadeInDown 1.5s ease;
        }

        /* Service Box Style */
        .service-box {
            margin: 20px auto;
            max-width: 750px;
            background-color: #979fa61f;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            text-align: left;
            display: flex;
            align-items: center;
            animation: slideIn 1.5s ease;
        }

        /* Image Style */
        .service-box img {
            width: 120px;
            height: 120px;
            border-radius: 10px;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        .service-box img:hover {
            transform: scale(1.05);
        }

        /* Service Text Style */
        .service-box h3 {
            font-size: 1.6em;
            color: #262626;
            margin: 0;
        }
        .service-box p {
            color: #555;
            font-size: 1.1em;
            line-height: 1.6;
            margin-top: 10px;
        }

        /* Keyframe Animations */
        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        @keyframes fadeInDown {
            0% { opacity: 0; transform: translateY(-20px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideIn {
            0% { opacity: 0; transform: translateX(-30px); }
            100% { opacity: 1; transform: translateX(0); }
        }


            /* Testimonials Section */
    .testimonials-section {
        text-align: center;
        padding: 10px 20px;
        background-color: #f4f4f9;
        color: #333;
        animation: fadeIn 2s ease-in-out;
    }

    /* Heading for Testimonials */
    .testimonials-section h2 {
        font-size: 2.2em;
        color: #13243b;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        animation: fadeInDown 1.5s ease;
        text-align: center;
    }

    /* Testimonial Box */
    .testimonial-box {
        max-width: 700px;
        margin: 20px auto;
        background-color: #ffffff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: fadeInUp 1.5s ease;
    }

    /* Image Style */
    .testimonial-box img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* Text Style */
    .testimonial-box p {
        color: #555;
        font-size: 1.1em;
        line-height: 1.6;
        margin: 0;
        text-align: center;
    }

    .testimonial-name {
        font-size: 1em;
        color: #d4417d;
        font-weight: bold;
        margin-top: 8px;
        text-align: center;
    }

    /* Satisfaction Guarantee Section */
    .guarantee-section {
        text-align: center;
        padding: 10px 20px 50px;
        background-color: #ffffff;
        color: #333;
        animation: fadeIn 2s ease-in-out;
        border-top: 8px solid #262626;
    }

    .guarantee-section h2 {
        font-size: 2.2em;
        color: #13243b;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        animation: fadeInDown 1.5s ease;
    }

    .guarantee-section p {
        font-size: 1.2em;
        color: #555;
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.7;
        animation: fadeInUp 1.5s ease;
    }

    /* Guarantee Image */
    .guarantee-image {
        width: 100%;
        max-width: 600px;
        margin-top: 30px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        animation: zoomIn 1.5s ease;
    }

    /* Keyframe Animations */
    @keyframes fadeIn {
        0% { opacity: 0; }
        100% { opacity: 1; }
    }
    @keyframes fadeInDown {
        0% { opacity: 0; transform: translateY(-20px); }
        100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInUp {
        0% { opacity: 0; transform: translateY(20px); }
        100% { opacity: 1; transform: translateY(0); }
    }
    @keyframes zoomIn {
        0% { transform: scale(0.9); opacity: 0; }
        100% { transform: scale(1); opacity: 1; }
    }

    /* Video Testimonial */
    .video-section2 {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding-bottom: 30px;
    }

    .video-testimonial {
        margin-top: 30px;
        text-align: center;
    }

    .video-testimonial iframe {
        width: 100%;
        max-width: 700px;
        aspect-ratio: 16 / 9;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        animation: fadeInUp 1.5s ease;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .testimonials-section h2 {
            font-size: 1.8em;
        }
        .testimonial-box p {
            font-size: 1em;
        }
        .guarantee-section h2 {
            font-size: 1.8em;
        }
        .guarantee-section p {
            font-size: 1em;
        }
    }

                /* Alberto Presentation Section */
                .presentation-section {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 50px 20px;
                background-color: #979fa61f;
                color: #333;
                animation: fadeIn 2s ease-in-out;
                flex-direction: column;
                text-align: center;
            }
    
            /* Image of Alberto */
            .presentation-section img {
                width: 120px;
                height: 120px;
                border-radius: 50%;
                margin-bottom: 20px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                animation: slideIn 1.5s ease;
            }
    
            /* Text Style */
            .presentation-text {
                max-width: 600px;
                font-size: 1.2em;
                line-height: 1.6;
                color: #555;
                animation: fadeInUp 1.5s ease;
                margin-bottom: 20px;
            }
    
            .highlight {
                color: #262626;
                font-weight: bold;
            }

            .linkedin-button a {               
                display: inline-block;
                background-color: #0e76a8;
                color: #ffffff;
                padding: 15px 30px;
                font-size: 1.1em;
                border-radius: 8px;
                text-decoration: none;
                font-weight: bold;
                box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
                transition: background-color 0.3s, transform 0.2s;
                animation: bounceIn 1.5s ease-in-out;
                margin-top: 20px;
            }

            .linkedin-button a:hover {
                transform: scale(1.05);
                background-color: #0a4c6c;
            }
    
            /* CTA Button */
            .cta-button {
                display: inline-block;
                background-color: #d4417d;
                color: #ffffff;
                padding: 15px 30px;
                font-size: 1.1em;
                border-radius: 8px;
                text-decoration: none;
                font-weight: bold;
                box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
                transition: background-color 0.3s, transform 0.2s;
                animation: bounceIn 1.5s ease-in-out;
                margin-top: 20px;
            }
            .cta-button:hover {
                background-color: #bb3869;
                transform: scale(1.05);
            }
    
            /* Keyframe Animations */
            @keyframes fadeIn {
                0% { opacity: 0; }
                100% { opacity: 1; }
            }
            @keyframes slideIn {
                0% { opacity: 0; transform: translateY(-30px); }
                100% { opacity: 1; transform: translateY(0); }
            }
            @keyframes fadeInUp {
                0% { opacity: 0; transform: translateY(20px); }
                100% { opacity: 1; transform: translateY(0); }
            }
            @keyframes bounceIn {
                0% { transform: scale(0.9); opacity: 0; }
                100% { transform: scale(1); opacity: 1; }
            }

            footer {
                background-color: #0c1726;
                padding: 50px 20px;
                display: flex;
                justify-content: space-around;
                align-items: flex-start;
            }

            .logo-footer img {
                margin-top: 20px;
                width: 100%;
    height: 100px;
            }

            .contact-info, .quick-links {
                display: flex;
                flex-direction: column;
            }

            .contact-info h4, .quick-links h4 {
                color: #f2f2f2;
                font-weight: 600;
            }

            .contact-info a, .quick-links a {
                display: flex;
                align-items: center;
                gap:  0 10px;
                color: #979fa6;
                cursor: pointer;
                text-decoration: none;
            }
            
            /* Media Queries */
                @media screen and (max-width: 768px) {
            html {
                overflow-x: hidden;
            }
            .fixed {
                height: 80px !important;
            }
            
            .fixed p {
                font-size: 16px;
    width: 90%;
     margin: 10px auto;
            }
            
            h1 {
                font-size: 2.2rem !important;
            }
            
            .comparison-table {
                overflow: auto;
            }

            .column-buttons {
                flex-direction: column;
                height: auto;
            }

            .left-button, .right-button {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0;
                width: 90%;
    margin: auto;
            }

            .benefit-box, .service-box, .video-section2, footer {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .benefit-box div h3, .benefit-box div p, .service-box div h3, .service-box div p {
                text-align: center;
            }

            .benefit-box img, .service-box img {
                margin-bottom: 20px;
                height: 200px;
                width: 100%;
            }

            .logo-footer, .contact-info, .quick-links {
                margin: auto;
            }

            .logo-footer a, .contact-info a, .quick-links a {
                justify-content: center;
            }
        }