.footer-content {
    background-color: #333333;
    color: #fff;
    padding: 15px 0;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.footer-wrapper {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    min-height: 100px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin: 0;
}

.footer-logo-img {
    width: 6em;
    padding: 1em 0;
}

.footer-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 14px;
    color: #999;
}

.company-name {
    color: #D4AF37 !important; /* Gold color */
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: normal;
}

.footer-text p {
    margin: 0;
    line-height: 1.6;
}

.contact-text {
    color: #D4AF37 !important; /* Gold color */
    margin-bottom: 0;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.copyright-text {
    color: #D4AF37; /* Gold color */
    margin: 0 0 15px 0;
    font-size: 16px; /* Increased from 14px */
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 8px;
}

.footer-social a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #397ac9;
}

.footer-globe {
    font-size: 22px; /* Increased from 24px */
}