.page-footer {
    padding-bottom: 0px !important;
}

.my-footer {
    background-color: #1d1d1d;
    /* Updated background color */
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 20px 0;
}

.footer-section {
    flex: 1;
    max-width: 200px;
    text-align: left;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-section ul li a {
    color: white;
}

.footer-divider {
    border: 1px solid #fff;
    margin: 5px 0;
}

.address {
    margin-top: 20px;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    /* Update link color for mobile */
    .my-footer a {
        color: #fff;
    }
}