footer {
    background-color: #5694bdff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 20px 30px;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

.footer-name {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
}

.footer-name h3 {
    font-size: 1.5em;
    margin-bottom: 0;
    color: #fff;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 20px;
    color: #fff;
}

.social-information {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    color: #fff;
}

.social-icon {
    width: 40px;
    display: flex;
    justify-content: flex-start;
    flex-shrink: 0;
}

.social-icon i.icon {
    font-size: 1.4rem;
    color: #fff;
}

.social-information span {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.social-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1rem;
}

.quick-links a:hover {
    color: rgba(255, 255, 255, 1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-logo img {
    width: 200px;
    height: auto;
    display: block;
}

.y-tag {
    color: rgba(255, 255, 255, 0.5);;
    font-size: 1.2rem;
}
@media (max-width: 600px) {
    footer {
        padding: 40px 16px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-name {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo img {
        width: 150px;
    }

    .social-information {
        justify-content: center;
    }

    .quick-links {
        align-items: center;
    }
}
@media (min-width: 601px) and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr; 
        gap: 20px;
        padding: 0 10px;
    }

    .footer-name {
        flex-direction: column; 
        align-items: flex-start;
        gap: 10px;
    }

    .footer-logo img {
        width: 140px; 
    }

    .footer-section h3 {
        font-size: 1.1rem; 
        white-space: nowrap; 
    }

    .social-information span {
        font-size: 0.9rem; 
    }
}