/* Shared Footer Styles */

.footer {
    padding: 40px 5% 20px;
    /* padding: 100px 5% 100px; */
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left {
    max-width: 700px;
}

.sobi-footer-logo {
    margin-bottom: 50px;
}

.country-name {
    color: var(--white);
    font-family: var(--circular-font);
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.reporting-text {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.safety-desc {
    color: var(--white);
    font-family: var(--circe-font);
    font-size: 25px;
    font-style: normal;
    font-weight: 350;
    line-height: normal;
}

.safety-desc a {
    color: var(--white);
    text-decoration: underline;
}

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

.qr-text {
    margin-bottom: 5px;
    color: var(--white);
    font-family: var(--circular-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 450;
    line-height: normal;
}

.qr-placeholder img {
    padding: 10px;
    border-radius: 12px;
    width: 153px;
    height: 153px;
}

/* Responsiveness for Footer */

@media (max-width: 1100px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-right {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 4%;
    }

    .country-name {
        font-size: 24px;
    }

    .safety-desc {
        font-size: 18px;
    }

    .qr-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .qr-placeholder img {
        width: 120px;
        height: 120px;
    }
}
