* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#footer{
    background: #1e1e1e;
    min-height: 220px;
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    color: white;
    padding: 30px;
    gap: 20px;
}

#foot1{
    width: 45%;
    font-size: 14px;
    line-height: 1.6;
    color: #dcdcdc;
}

#foot2{
    width: 45%;
    display: flex;
    flex-direction: column;   
    align-items: center;
    gap: 15px;
}

#footer-links{
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

#footer-links a{
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

#footer-links a:hover {
    color: #2bb0a6;
}

#copyright{
    font-size: 14px;
    color: #dcdcdc;
    text-align: center;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    #footer {
        justify-content: center;
        gap: 30px;
    }
    
    #foot1,
    #foot2 {
        width: 100%;
        text-align: center;
    }
    
    #footer-links {
        justify-content: center;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    #footer {
        flex-direction: column;
        padding: 25px 15px;
        gap: 20px;
        min-height: auto;
    }
    
    #foot1,
    #foot2 {
        width: 100%;
    }
    
    #foot1 {
        font-size: 13px;
        line-height: 1.5;
    }
    
    #footer-links {
        gap: 15px;
    }
    
    #footer-links a {
        font-size: 13px;
    }
    
    #copyright {
        font-size: 12px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    #footer {
        padding: 20px 10px;
        gap: 15px;
    }
    
    #foot1 {
        font-size: 12px;
        line-height: 1.4;
    }
    
    #footer-links {
        gap: 10px;
        flex-direction: column;
    }
    
    #footer-links a {
        font-size: 12px;
        display: block;
    }
    
    #copyright {
        font-size: 11px;
    }
}

