
.footer-section {
    font-size: 1rem;
    color: black;
    position: relative;
}

.footer-content {
    padding: 40px 0;
    position: relative;
    color: black;
}

.footer-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.footer-content p,
.footer-content h2,
.footer-content h3 {
    position: relative;
    z-index: 2;
}

.footer-content p {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 5px;
}

.footer-content h2 {
    font-size: 1.5rem;
    color: white;
    margin: 10px 0;
}

.footer-content h2 .text-primary {
    color: var(--primary-color);
}

.footer-content h3 {
    font-size: 1.75rem;
    color: var(--secondary-color);
}

.footer-bottom {
    font-size: 0.9rem;
}

.footer-bottom ul {
    padding-left: 0;
    list-style: none;
}

.footer-bottom ul li a {
    color: white;
    text-decoration: none;
}

.footer-bottom ul li a:hover {
    color: white;
}

.footer-bottom p {
    color: white;
    margin-bottom: 0;
}

.fixed-phone-number {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 1000;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .fixed-phone-number {
        display: block;
    }
}
