    footer {
        background: linear-gradient(135deg, #d62871 0%, #9c0049 100%);
        color: #e2e8f0;
        margin-top: 80px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px 30px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
    }

    .footer-section h3.footer-heading {
        color: #fff;
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #667eea;
    }

    .footer-text {
        color: #cbd5e0;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .footer-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: #cbd5e0;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 0.95rem;
    }

    .footer-links a:hover {
        color: #667eea;
    }

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

    .footer-bottom p {
        color: #a0aec0;
        font-size: 0.9rem;
        margin: 8px 0;
    }

    .footer-legal a {
        color: #cbd5e0;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-legal a:hover {
        color: #667eea;
    }

    @media screen and (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }