body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.footer {
    background-color: #f8cd45; /* Ana footer rengi */
    color: #333;
    padding: 2rem 0 1rem;
}

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

.footer-main {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-brand {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    max-height: 100px;
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #333; /* Koyu arka plan sosyal ikonlar için */
    color: #f8cd45; /* İkon rengi footer rengiyle aynı */
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #222;
    transform: translateY(-3px);
}

.footer-links-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}

.footer-column {
    flex: 1 1 150px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 6px;
    color: #333;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #333; /* Başlık altındaki çizgi */
}

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

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

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

.footer-links a:hover {
    color: #000;
    font-weight: 500;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 13px;
    color: #333;
}

.terms a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.terms a:hover {
    color: #000;
    text-decoration: underline;
}

/* Mobil düzenlemeler */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
    }
    
    .footer-brand {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links-container {
        gap: 30px;
    }
    
    .footer-column {
        flex: 1 1 100%;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}