/* Footer */
.footer {
    background-color: #353a41;
    color: #ffffff;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section1 {
    flex: 1; 
    text-align: left; 
    font-family: "Quicksand", sans-serif;
}

.footer-section2 {
    flex: 1; 
    text-align: right; 
    padding-right: 30px;
}

.footer-section1 p {
    font-family: "Quicksand", sans-serif;
    font-size: 0.9rem;
    color: #ccc;
    margin: 5px 0;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 20px;
}

.footer-bottom p {
    font-family: "Quicksand", sans-serif;
    font-size: 0.8rem;
    color: #ccc;
}


.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: #007bff;
}

.social-links i {
    font-size: 1.5rem; /* Set a fixed size for all icons */
    width: 1.5rem; /* Ensure consistent width */
    height: 1.5rem; /* Ensure consistent height */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 2rem;
    aspect-ratio: 1/1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 20px;
}

.footer-bottom p {
    font-family: "Quicksand", sans-serif;
    font-size: 0.8rem;
    color: #ccc;
}

@media (max-width: 480px) {
    .footer {
        padding: 25px 10px 10px;
    }
    
    .footer-container {
        flex-direction: column;
        padding: 0 10px;
    }
    
    .footer-section1 {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-section1 h3 {
        font-size: 1.2rem;
    }
    
    .footer-section1 p {
        font-size: 0.85rem;
    }
    
    .footer-section2 {
        text-align: center;
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .social-links {
        justify-content: center;
        gap: 20px;
    }
    
    .social-links a {
        font-size: 1.8rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}