/* Footer Styles */
.site-footer {
    margin-top: auto;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    background-size: cover;
    color: #ffffff;
    padding: 60px 0 30px;
    z-index: 1;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-info {
    flex: 1;
    padding-right: 30px;
}

.footer-heading h2 {
    font-size: 5.5rem;
    line-height: 1.2;
    font-weight: normal;
    margin: 0;
    max-width: 900px;
}

.footer-address {
    flex: 0 0 300px;

}

.address-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.address,
.phone-number {
    margin: 10px 0;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.60);
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    /* 181.818% */
}

.footer-bottom {
    padding-top: 20px;
}

.divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.footer-credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-by p,
.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.site-by a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.site-by a:hover {
    color: #ffffff;
}

.footer-button {
    display: inline-block;
    padding: 10px 40px;
    background-color: #F95035;
    border-radius: 25px;
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.footer-button:hover {
    background-color: #dd4530;
    transform: translateY(-2px);
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .footer-heading h2 {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-info {
        margin-bottom: 40px;
        padding-right: 0;
    }

    .footer-heading h2 {
        font-size: 2.2rem;
    }

    .footer-address {
        flex: 1 1 100%;
    }

    .footer-credits {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-by {
        margin-bottom: 10px;
    }

    .footer-button {
        padding: 6px 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .footer-heading h2 {
        font-size: 1.8rem;
    }

    .site-footer {
        padding: 40px 0 20px;
    }
}