body {
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}

.footer {
    background: #002525;         /*linear-gradient(45deg, #34495e, #2c3e50);*/
    font-family: 'Arial', sans-serif;           /*'Roboto', sans-serif;*/
    color: white;
    padding: 40px 0;
    position: relative;
    text-align: center;
    overflow: hidden;

    bottom: 0;
    width: 100%;
}

.footer .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    margin: 20px;
    flex: 1;
    min-width: 250px;
    /*position: relative;
    overflow: hidden;*/
}

.footer-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1abc9c;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.footer-section h2::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #1abc9c;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.footer-section p, .footer-section ul, .footer-section li, .footer-section a {
    font-size: 16px;
    line-height: 1.8;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #1abc9c;
}

.footer-section .social-links a {
    display: inline-block;
    margin: 0 10px;
    font-size: 24px;
    color: #bdc3c7;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section .social-links a:hover {
    color: #1abc9c;
    transform: scale(1.2);
}

.footer-section:hover h2 {
    color: #e74c3c;
}

.footer-section:hover h2::after {
    width: 100%;
}

.footer-section:hover p, .footer-section:hover ul li a {
    color: #ecf0f1;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    background: #011f1f;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #bdc3c7;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin: 10px 0;
    }
}