    /* Footer Styles */
    :root {
        --primary-color: #00383b;
        --secondary-color: #064D50;
        --accent-color: #42db00;
        --text-light: #ffffff;
        --text-dark: #333333;
        --text-medium: rgba(255, 255, 255, 0.8);
        --transition: all 0.3s ease;
    }
    
    @font-face {
        font-family: 'HandelGothic';
        src: url('/static/fonts/HandelGothic.woff2');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }
    
    body {
        font-family: 'Montserrat', sans-serif;
        font-weight: 400;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: 'HandelGothic', 'Montserrat', sans-serif;
        font-weight: 600;
    }
    
    
    /* CTA Section */
    .cta-section {
        padding: 0;
        margin: 4rem 0 0;
        position: relative;
    }
    
    .cta-wrapper {
        background: linear-gradient(120deg, var(--secondary-color) 0%, var(--primary-color) 100%);
        border-radius: 20px;
        padding: 3rem 2rem;
        text-align: center;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        position: relative;
        z-index: 2;
        overflow: hidden;
    }
    
    .cta-wrapper::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(66, 219, 0, 0.1) 0%, transparent 60%);
        z-index: 1;
    }
    
    .cta-content {
        position: relative;
        z-index: 3;
    }
    
    .cta-content h3 {
        color: var(--text-light);
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-phone {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background: rgba(255, 255, 255, 0.1);
        color: var(--text-light);
        border-radius: 50px;
        margin-right: 1rem;
        margin-bottom: 1rem;
        text-decoration: none;
        transition: var(--transition);
        font-weight: 600;
    }
    
    .cta-phone:hover {
        background: rgba(255, 255, 255, 0.2);
        color: var(--text-light);
    }
    
    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 2rem;
        background: var(--accent-color);
        color: var(--text-light);
        border-radius: 50px;
        text-decoration: none;
        transition: var(--transition);
        font-weight: 600;
        box-shadow: 0 10px 20px rgba(66, 219, 0, 0.3);
    }
    
    .cta-button:hover {
        background: #4ee700;
        transform: translateY(-3px);
        color: var(--text-light);
    }
    
    /* Main Footer */
    .main-footer {
        position: relative;
        background-color: #f8fafa;
        margin-top: -80px;
        padding-top: 120px;
        overflow: hidden;
    }
    
    .footer-top {
        padding: 4rem 0 2rem;
    }
    
    /* Footer Info */
    .footer-info {
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        margin-bottom: 1.5rem;
        max-width: 180px;
    }
    
    .footer-logo img {
        width: 100%;
        height: auto;
    }
    
    .company-desc {
        font-size: 0.95rem;
        line-height: 1.7;
        color: var(--text-dark);
        opacity: 0.8;
        margin-bottom: 1.5rem;
    }
    
    .contact-info {
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }
    
    .contact-item i {
        color: var(--accent-color);
        font-size: 1rem;
        width: 20px;
        text-align: center;
    }
    
    .contact-item a, .contact-item span {
        color: var(--text-dark);
        opacity: 0.8;
        text-decoration: none;
        transition: var(--transition);
    }
    
    .contact-item a:hover {
        color: var(--accent-color);
        opacity: 1;
    }
    
    .social-links {
        display: flex;
        gap: 0.75rem;
    }
    
    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: var(--secondary-color);
        color: var(--text-light);
        border-radius: 50%;
        transition: var(--transition);
    }
    
    .social-links a:hover {
        background: var(--accent-color);
        transform: translateY(-3px);
    }
    
    /* Footer Widgets */
    .footer-widget {
        margin-bottom: 2rem;
    }
    
    .widget-title {
        font-size: 1.2rem;
        color: var(--secondary-color);
        margin-bottom: 1.25rem;
        position: relative;
        padding-bottom: 0.5rem;
    }
    
    .widget-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--accent-color);
    }
    
    .widget-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .widget-links li {
        margin-bottom: 0.5rem;
    }
    
    .widget-links a {
        display: block;
        color: var(--text-dark);
        opacity: 0.8;
        text-decoration: none;
        font-size: 0.95rem;
        transition: var(--transition);
        position: relative;
        padding-left: 15px;
    }
    
    .widget-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background: var(--accent-color);
        border-radius: 50%;
        opacity: 0.7;
        transition: var(--transition);
    }
    
    .widget-links a:hover {
        color: var(--accent-color);
        opacity: 1;
        transform: translateX(3px);
    }
    
    .widget-links a:hover::before {
        opacity: 1;
    }
    
    /* Footer Middle */
    .footer-middle {
        padding: 2rem 0;
        border-top: 1px solid rgba(6, 77, 80, 0.1);
        border-bottom: 1px solid rgba(6, 77, 80, 0.1);
        text-align: center;
    }
    
    .payment-section, .awards-section {
        margin-bottom: 2rem;
    }
    
    .payment-section h4, .awards-section h4 {
        font-size: 1.1rem;
        color: var(--secondary-color);
        margin-bottom: 1rem;
    }
    
    .payment-icons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .payment-icon {
        width: 60px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 6px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
    }
    
    .payment-icon i {
        font-size: 1.8rem;
        color: var(--text-dark);
        opacity: 0.7;
    }
    
    .payment-icon:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .payment-icon:hover i {
        opacity: 1;
    }
    
    .awards-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .awards-icons img {
        height: 50px;
        opacity: 0.8;
        transition: var(--transition);
    }
    
    .awards-icons img:hover {
        opacity: 1;
        transform: scale(1.05);
    }
    
    /* Footer Bottom */
    .footer-bottom {
        padding: 1.5rem 0;
        background: var(--primary-color);
    }
    
    .copyright, .update-info {
        font-size: 0.9rem;
        color: var(--text-light);
        opacity: 0.7;
        margin: 0;
        line-height: 1.5;
    }
    
    .update-info {
        text-align: right;
    }
    
    /* Back to Top Button */
    #back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 45px;
        height: 45px;
        background: var(--accent-color);
        color: white;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(66, 219, 0, 0.3);
        transition: var(--transition);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
    }
    
    #back-to-top.visible {
        opacity: 1;
        visibility: visible;
    }
    
    #back-to-top:hover {
        background: #4ee700;
        transform: translateY(-5px);
    }
    
    /* Responsive Styles */
    @media (max-width: 991.98px) {
        .cta-content h3 {
            font-size: 1.5rem;
        }
        
        .cta-wrapper {
            padding: 2.5rem 1.5rem;
        }
        
        .footer-top {
            padding: 3rem 0 1rem;
        }
    }
    
    @media (max-width: 767.98px) {
        .cta-section {
            margin-top: 3rem;
        }
        
        .cta-content h3 {
            font-size: 1.3rem;
        }
        
        .cta-phone, .cta-button {
            display: block;
            width: 100%;
            text-align: center;
            margin-right: 0;
        }
        
        .footer-info {
            text-align: center;
        }
        
        .footer-logo {
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-item {
            justify-content: center;
        }
        
        .social-links {
            justify-content: center;
        }
        
        .update-info {
            text-align: center;
            margin-top: 0.5rem;
        }
        
        .copyright {
            text-align: center;
        }
        
        .payment-icon {
            width: 50px;
            height: 35px;
        }
        
        .payment-icon i {
            font-size: 1.5rem;
        }
        
        .awards-icons img {
            height: 40px;
        }
    }
    
    @media (max-width: 575.98px) {
        .cta-wrapper {
            padding: 2rem 1rem;
            border-radius: 15px;
        }
        
        .cta-content h3 {
            font-size: 1.1rem;
        }
        
        .footer-widget .widget-title {
            font-size: 1.1rem;
        }
        
        .footer-middle {
            padding: 1.5rem 0;
        }
        
        .payment-section h4, .awards-section h4 {
            font-size: 1rem;
        }
        
        .payment-icons {
            gap: 0.5rem;
        }
        
        .payment-icon {
            width: 45px;
            height: 30px;
        }
        
        .payment-icon i {
            font-size: 1.3rem;
        }
        
        .awards-icons {
            gap: 1rem;
        }
        
        .awards-icons img {
            height: 35px;
        }
        
        .footer-bottom {
            padding: 1rem 0;
        }
        
        .copyright, .update-info {
            font-size: 0.8rem;
        }
        
        #back-to-top {
            width: 40px;
            height: 40px;
            bottom: 20px;
            right: 20px;
        }
    }