/* .footer_container {
    border: 1px solid yellowgreen;
} */

.footer_container footer {
        background-color: #222; /* Koyu zemin */
        color: #fff; /* Yazı rengi */
        padding: 10px 0;
        margin-top: 0px;
}
.footer_container footer .footer_content {
    display: flex;
    flex-wrap: wrap; /* Elemanlar taşarsa alt satıra geçsin */
    /* border: 1px solid purple; */
    width: 90%; /* Mobilde daha iyi görünüm için genişliği artırdım */
    max-width: 900px; /* Büyük ekranlarda çok genişlemesin */
    min-height: fit-content;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    gap: 20px; /* Elemanlar arası boşluk */
    box-sizing: border-box;
}

/* Mobil uyumlu düzenleme */
@media (max-width: 768px) {
    .footer_container footer .footer_content {
        flex-direction: column;
        align-items: flex-start; /* Elemanlar sola yaslansın */
        text-align: left;
        width: 95%;
    }
}

.footer_container footer .footer_content .menu_footer {
        /* border: 1px solid red; */
        align-items: center;
}

.footer_container footer .footer_content .menu_footer h2 {
        font-size: 30px;
        margin-bottom: 20px;
        color: #ffffff; /* Vurgu rengi: örnek olarak sarı */
}

.footer_container footer .footer_content .menu_footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
        /* border: 1px solid white; */
}

.footer_container footer .footer_content .menu_footer ul li {
        margin: 10px 0;
        font-size: 14px;
}

.footer_container footer .footer_content .menu_footer ul li a {
        text-decoration: none;
        color: #ffffff; /* Yazı rengi */
        transition: color 0.3s ease;
}

.footer_container footer .footer_content .menu_footer ul li a:hover {
        color: #facc15; /* Vurgu rengi: örnek olarak sarı */
}  

/* .footer_container footer .footer_content .media_footer {
        border: 1px solid blue;
        justify-content: center;
        align-items: center;
}

.footer_container footer .footer_content .media_footer h3 {
        font-size: 30px;
        color: #ffffff; /* Vurgu rengi: örnek olarak sarı 
}

.footer_container footer .footer_content .media_footer .first_hr {
        margin: 20px auto;
}

.footer_container footer .footer_content .media_footer ul {
        list-style: none;
        padding: 0;
        margin: 10px 0px;
        justify-content: center;
        align-items: center;
        border: 1px solid white;
}

.footer_container footer .footer_content .media_footer ul li {
        margin: 0;
        font-size: 14px;
}

.footer_container footer .footer_content .media_footer ul li a {
        text-decoration: none;
        color: #ffffff; 
        transition: color 0.3s ease;
}

.footer_container footer .footer_content .media_footer ul li a:hover {
        color: #facc15; 
} */

.footer_container footer .second_hr {
        border: 0;
        width: 60%;
        height: 1px;
        background-color: #444; 
        margin: 20px auto;
}
.footer_container footer .footer_info {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
    font-size: 14px;
    color: white;
    opacity: 0.85;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.footer_container footer .footer_info p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: white; /* Sarı vurgu */
}

.footer_container footer .footer_info p span {
    color: #eeff00; /* Yeşil vurgu */
}

.footer_container footer .footer_info a {
    color: #479dff;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}

.footer_container footer .footer_info a:hover {
    text-decoration: underline;
}

.sarimedyaText {
  color: #facc15 !important;
  text-decoration: underline;
}

.esmaecey {
        color: #D3D3D3 !important;
        text-decoration: underline;
}

@media (max-width: 480px) {
    .footer_container footer .second_hr {
        width: 90%;
        margin: 5px auto;
    }

    .footer_container footer .footer_info {
        font-size: 14px;
        padding: 10px;
        flex-direction: column;
        gap: 4px;
    }

    .footer_container footer .footer_info p {
        font-size: 14px;
    }
}
