html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    }
    .content-wrapper {
    flex: 1 0 auto;
    min-height: calc(100vh - 200px);
    }
    footer {
    flex-shrink: 0;
    background: rgb(211, 211, 211);
    color: #050505;
    font-size: 14px;
    margin-top: 50px;
    -webkit-box-shadow: 0px 0px 13px 3px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 13px 3px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 13px 3px rgba(0,0,0,0.35);
    }
    .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 15%;
    padding-bottom: 30px !important;
    background-color: rgb(255, 255, 255);
    border-top: 1px solid rgb(214, 214, 214);
    background-image: url("../images/icons/footer_globe.png");
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: bottom right; /* Positions the image slightly off the bottom right */
    background-size: auto 200%; /* Makes the image 2x as tall as the container */
    }
    .footer-column {
            align-content: center;

    flex: 1;
    min-width: 150px;
    }
    .footer-column h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #000000;
    }
    .footer-column ul {
    list-style: none;
    padding: 0;
    }
    .footer-column ul li {
    margin-bottom: 8px;
    }
    .footer-column ul li a {
    color: #b0b3b8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 20px !important;
    }

        .footer-column img {
    color: #b0b3b8;
    text-decoration: none;
    transition: color 0.3s;
    max-width: 20px !important;
    width: 100%;
    height: auto;
    }

    .about-section p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    opacity: 0.8;
    color: #000000;

    }
    .social-icons {
    display: flex;
    gap: 12px;
    }
    .social-icons a {
    color: #242424 !important;
    font-size: 18px;
    transition: all 0.3s;
    }
    .social-icons a:hover {
    color: #d40000;
    }
    .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15%;
    background: rgb(243, 243, 243);
    border-top: 1px solid #e4e4e4;
    font-size: 13px;
    color: #000000;
    }
    .version {
        color: #2929295b;
    }
    .version-date {
        color: rgba(49, 49, 49, 0.452);
    }
    .footer-links {
    display: flex;
    align-items: center;
    }
    .footer-links a {
    color: #242424;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s;
    font-size: 17px !important;
    font-weight: lighter !important;
    }
   
    .footer-logo {
    display: inline-block;
    margin-left: 12px;
    }
    .footer-logo img {
    width: auto;
    height: 20px;
    fill: #383838;
    margin-left: -10px;
    transition: fill 0.3s;
    }
    .footer-logo svg:hover {
    fill: #d40000;
    }
    .bar {
        color: #27272796;
        margin: 0 5px;
      }
      
    @media (max-width: 1024px) {
    .footer-top {
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 10%;
    }
    .footer-column {
    flex: 1 1 45%;
    margin-bottom: 20px;
    text-align: center;
    }
    .footer-column ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    }
    }
    @media (max-width: 768px) {
    .footer-top {
    flex-direction: column;
    align-items: center;
    padding: 20px 5%;
    }
    .footer-column {
    flex: 1 1 100%;
    text-align: center;
    }
    .social-icons {
    justify-content: center;
    }
    .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 15px 5%;
    color: #272727;
    }
    .footer-bottom .span {
        color: #242424;
        display: flex;
    }
    .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
    }
    .footer-links a {
    margin: 5px;
    }
    .footer-logo {
    display: block;
    margin: 10px auto 0;
    }
    }
    @media (max-width: 480px) {
    .footer-column h4 {
    font-size: 18px;
    }
    .footer-bottom {
    font-size: 12px;
    }
    .footer-logo img {
    height: 18px;
    }
    }

    .footer-column ul li a {
        color: #242424;
        text-decoration: none;
        transition: color 0.3s;
        font-size: 18px !important; /* Reduced font size */
        font-weight: lighter !important; /* Ensures font weight is lighter */
    }
    
    .footer-links a {
        color: #1a1a1a;
        text-decoration: none;
        margin: 0 8px;
        transition: color 0.3s;
    }
    body {
        margin: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important; /* Ensure body takes full height */
    }

    .content-wrapper {
        flex: 1 0 auto !important;
        min-height: calc(100vh - 200px) !important; /* Adjust to ensure proper spacing */
    }

    footer {
        flex-shrink: 0 !important;
        margin-top: 0 !important; /* Remove any margin that might cause a gap */
    }