/* Footer Styles - Sade Tasarım */
.footer2 {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 40px 0 20px;
}

.footer-section {
    height: 100%;
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-title:after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #4ac1f1;
    margin-top: 8px;
}

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

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
    font-size: 15px;
}

.footer-links a:hover {
    color: #4ac1f1;
    text-decoration: none;
}

.contact-info {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #bdc3c7;
}

.contact-item i {
    width: 20px;
    margin-right: 12px;
    color: #4ac1f1;
    font-size: 14px;
}

.contact-item a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.contact-item a:hover {
    color: #4ac1f1;
    text-decoration: none;
}

.contact-item span {
    color: #bdc3c7;
    font-size: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer2 {
        padding: 30px 0 15px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .contact-item a,
    .contact-item span {
        font-size: 14px;
    }
}
