.footer-platform {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 0;
    margin-top: 0;
}

.footer-wrapper {
    padding: 3rem 0 1rem;
}

.footer-main {
    margin-bottom: 3rem;
}

.footer-about .footer-logo {
    height: 40px;
    width: auto;
}

.footer-about .footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #d2e225;
}

.footer-about .footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #d2e225;
    color: #333;
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #d2e225;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-list li a:hover {
    color: #d2e225;
    transform: translateX(5px);
    text-decoration: none;
}

.footer-list li i {
    color: #d2e225;
    margin-right: 0.5rem;
}

.footer-newsletter {
    background: rgba(210, 226, 37, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #d2e225;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.newsletter-input-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-input-group input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    outline: none;
}

.newsletter-btn {
    background: #d2e225;
    color: #333;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #b8d020;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
}

.legal-links li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.legal-links li a:hover {
    color: #d2e225;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer-wrapper {
        padding: 2rem 0 1rem;
    }

    .legal-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom .row {
        text-align: center !important;
    }

    .footer-bottom .col-md-6 {
        margin-bottom: 1rem;
    }
}
