 .footer {
            background-color: #1a1a1a;
            color: #ffffff;
            padding-top: 60px;
            padding-bottom: 20px;
        }
        .footer a {
            color: #a9a9a9;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: #ffffff;
        }
        .footer-heading {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1rem;
        }
        .footer-logo {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #ffffff;
        }
        .footer-logo span {
            color: #e84c3d;
        }
        .footer-contact-info {
            color: #a9a9a9;
            margin-bottom: 20px;
        }
        .get-started-btn {
            background-color: #e84c3d;
            color: #ffffff;
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 5px;
            text-transform: uppercase;
            text-decoration: none;
            display: inline-block;
            margin-bottom: 20px;
            transition: background-color 0.3s ease;
        }
        .get-started-btn:hover {
            background-color: #d64536;
            color: #ffffff;
        }
        .social-icons a {
            color: #a9a9a9;
            margin-right: 15px;
            font-size: 1.2rem;
        }
        .social-icons a:last-child {
            margin-right: 0;
        }
        .footer-links-list {
            list-style: none;
            padding-left: 0;
        }
        .footer-links-list li {
            margin-bottom: 10px;
        }
        .footer-partners {
            padding-top: 40px;
            padding-bottom: 40px;
            border-top: 1px solid #333333;
            border-bottom: 1px solid #333333;
            margin-top: 40px;
        }
        .partner-logo {
            max-height: 40px;
            filter: grayscale(100%) brightness(2);
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .partner-logo:hover {
             filter: grayscale(0%) brightness(1);
             opacity: 1;
        }
        .footer-bottom {
            padding-top: 20px;
            font-size: 0.875rem;
            color: #a9a9a9;
        }
        .footer-bottom a {
            margin-left: 20px;
        }
        @media (max-width: 767.98px) {
            .footer-heading {
                margin-top: 30px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-bottom nav {
                margin-top: 10px;
            }
            .footer-bottom nav a {
                margin: 0 10px;
            }
            .partner-logo {
                margin-bottom: 20px;
            }
        }


        /* Hero CTA Section */
.hero-cta-section {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.red-diagonal {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    clip-path: polygon(0 0, 85% 0, 70% 100%, 0 100%);
    display: flex;
    align-items: center;
    padding: 60px 40px;
}

.dark-section {
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
}

.hero-title {
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 400px;
}

.cta-button {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background-color: #000;
    color: white;
    transform: translateY(-2px);
}

.company-name {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.company-phone {
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-align: center;
}

.contact-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contact-button:hover {
    background-color: white;
    color: #2d2d2d;
}

/* Responsive Design for Hero CTA Section */
@media (max-width: 992px) {
    .red-diagonal {
        width: 100%;
        clip-path: none;
        position: relative;
        padding: 40px 20px;
    }

    .dark-section {
        position: relative;
        width: 100%;
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .company-name {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .company-name {
        font-size: 1.5rem;
    }

    .company-phone {
        font-size: 1.1rem;
    }
}
