.footer-container {
    background-color: #414DED;
    color: white;
    font-family: Arial, sans-serif;
    padding: 30px 15px 0;
}

.footer-content {
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 320px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: normal;
}

.footer-contact p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: normal;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.footer-link:hover {
    color: #DE3163;
}

.footer-copyright {
    text-align: right;
    padding: 15px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.75rem;
    color: #bdc3c7;

}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-section {
        min-width: 100%;
    }
    
    .link-row {
        gap: 15px;
    }
    
    .footer-copyright {
        margin-top: 20px;
        text-align: left;
    }
}