/* Footer Styles */
#footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
    margin-top: 60px;
}

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

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 220px;
    margin-bottom: 30px;
    padding: 0 15px;
}

.footer-section h3 {
    color: #3498db;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
    display: inline-block;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.footer-section ul li a i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.contact-info {
    margin-bottom: 15px;
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-info i {
    margin-right: 10px;
    color: #3498db;
    width: 20px;
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: #34495e;
    color: #ecf0f1;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #3498db;
}

.footer-bottom {
    /*text-align: center;*/
    padding-top: 20px;
    border-top: 1px solid #34495e;
    margin-top: 20px;
    width: 100%;
}

.footer-bottom p {
    margin: 0;
    color: #95a5a6;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
    }

    .footer-section {
        flex: 100%;
        margin-bottom: 30px;
    }

    .services {
        grid-template-columns: 1fr;
    }

    nav ul {
        flex-wrap: wrap;
    }

    nav ul li {
        margin: 5px 10px;
    }
}
