.footer {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    color: #ffffff;
    padding: 4rem 0 2rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    text-align: center;
}

.footer-main h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-main p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #d1d5db;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border: 2px solid #3b82f6;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    background: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #3b82f6;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.social-link i {
    font-size: 1.25rem;
}

.footer-copyright {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-main h3 {
        font-size: 1.75rem;
    }

    .footer-main p {
        font-size: 1rem;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .footer-links a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-link {
        width: 2rem;
        height: 2rem;
    }

    .social-link i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-main h3 {
        font-size: 1.5rem;
    }

    .footer-main p {
        font-size: 0.9rem;
    }

    .footer-links a {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}