.footer-section {
   display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(24, 24, 24, 0.938); 
        backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px);
        padding: 40px 90px;
}

.copy-holder{
     background: rgba(24, 24, 24, 0.938); 
        backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 14px;
}

.footer-logo{
    width: 20%;
}

.footer-logo img{
    width: 250px;
}

.footer-links-holder{
    display: flex;
    justify-content: space-around;
    gap: 50px;
    padding: 20px;
    width: 60%;
}

.footer-main-links, .footer-secondary-links, .footer-privacy-links, .footer-contact-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-main-links a, .footer-secondary-links a, .footer-privacy-links a, .footer-contact-links a {
    color: white;
    text-decoration: none;
    margin: 5px 0;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-main-links a:hover, .footer-secondary-links a:hover, .footer-privacy-links a:hover, .footer-contact-links a:hover {
    color: #F28C28;
    transform: translateY(-3px);
}

.footer-contact-links a img {
    width: 16px;
    margin-right: 8px;
    vertical-align: middle;
}

.social-media-icons a img {
    width: 24px;
   transition: transform 0.3s ease;
}

.social-media-icons a img:hover {
    transform: scale(1.2);
}

@media screen and (max-width: 768px) {
    .footer-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .footer-logo {
        width: 100%;
        margin-bottom: 20px;
        
    }

    .footer-logo img{
        width: 200px;
        margin: 0 auto;
    }

    .footer-links-holder {
        flex-direction: column;
        width: 100%;
        gap: 30px;
    }
}