:root {
      --primary-color: #0077b6;
      --primary-dark: #005f92;
      --secondary-color: #00b4d8;
      --accent-color: #90e0ef;
      --light-color: #caf0f8;
      --bg-color: #ffffff;
      --text-color: #222;
      --text-light: #f8f9fa;
      --transition-base: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
      --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
      --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
      --border-radius-sm: 8px;
      --border-radius-md: 12px;
      --border-radius-lg: 16px;
    }


footer {
    background: linear-gradient(135deg,
            var(--primary-dark) 0%,
            var(--primary-color) 100%);
    color: var(--text-light);
    padding: 3rem 1rem;
    text-align: center;
    /* margin-top: 4rem; */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.footer-logos img {
    height: 50px;
    object-fit: contain;
    opacity: 0.9;
    transition: var(--transition-base);
}

.footer-logos img:hover {
    transform: scale(1.1);
    opacity: 1;
}

.footer-text {
    font-size: 0.9rem;
    margin-top: 1.5rem;
    opacity: 0.85;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition-base);
    white-space: nowrap;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    footer {
        padding: 2rem 1rem;
    }

    .footer-logos {
        gap: 1rem;
        margin: 1rem 0;
    }

    .footer-logos img {
        height: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1rem;
        align-items: center;
    }

    .footer-link {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }

    .footer-text {
        font-size: 0.8rem;
        margin-top: 1rem;
        line-height: 1.4;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    footer {
        padding: 1.5rem 0.8rem;
    }

    .footer-logos {
        gap: 0.8rem;
        margin: 0.8rem 0;
    }

    .footer-logos img {
        height: 35px;
    }

    .footer-links {
        gap: 0.5rem;
        margin-top: 0.8rem;
    }

    .footer-link {
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }

    .footer-text {
        font-size: 0.75rem;
        margin-top: 0.8rem;
    }
}