.footer {
    background-color: #1e1e2f; /* Dark background color */
    color: #f0f0f0;
    padding: 40px 60px; /* Increased padding to make it feel wider/taller */
    margin-top: auto;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    text-align: left;
}

.footer-left h3 {
    margin: 0 0 5px 0; /* Remove default margins, add small space below */
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-left p {
    margin: 0; /* Remove default paragraph margin */
    font-size: 0.9rem;
    color: #a0a0b5; /* Softer color for copyright text */
}

.footer-right {
    display: flex;
    gap: 15px;
}

.footer-right a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #2f2f45;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-right a:hover {
    background-color: #4dabf7;
    transform: translateY(-2px);
}

.footer-right img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 25px; /* Increased gap for better separation on mobile */
        text-align: center;
    }

    .footer-left {
        order: 2;
        text-align: left; /* Override parent's text-align: center on mobile */
    }

    .footer-right {
        order: 1;
        justify-content: center;
    }
}