:root {
    --primary-color: maroon;
    --secondary-color: #fff;
    --black-color: #0000006b;
}

.footer-section {
    background-color: #ffffff;
    position: relative;
    color: #333;
}

.footer-logo-heading {
    color: var(--primary-color);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.15);
    font-size: 40px;
    margin-top: 10px;
}

@media(max-width:768px) {
    .footer-logo-heading {
        font-size: 22px;
    }
}

.footer-divider {
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    border-radius: 10px;
}

.text-highlight {
    color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
    color: #444;
    font-weight: 500;
}

.footer-links a {
    text-decoration: none;
    color: #444;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icon {
    color: var(--primary-color);
    background-color: rgba(128, 0, 0, 0.08);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 2px solid maroon;
    background-color: #f9f9f9;
}

.footer-bottom p {
    color: #333;
}

@media (max-width: 992px) {
    .border-lg-start {
        border: none !important;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}