.about-three__img1 {
    min-width: 100%!important;
}
.mobile-menu .contact-info
{
    padding: 15px 25px 0px!important;
}

.faq-three__faq
{
    width: 100%!important;
    max-width: 100%!important;
}

.sec-title-style3{
    display: flex;
    justify-content: center;
}
.adres{
    min-height: 90px!important;
}

.footer-widget__contact-box ul {
    display: flex;
    flex-direction: row; /* Varsayılan olarak yan yana */
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 20px; /* Elemanlar arası boşluk */
}

.footer-widget__contact-box ul li {
    display: flex;
    align-items: center;
    gap: 10px; /* İkon ve içerik arası boşluk */
}

/* Mobil düzen */
@media (max-width: 768px) {
    .footer-widget__contact-box ul {
        flex-direction: column; /* Mobilde alt alta */
    }

    .footer-widget__contact-box ul li {
        width: 100%; /* Mobilde tam genişlik */
    }
}


#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

#whatsapp-button img {
    width: 24px;
    height: 24px;
}


#call-button {
    position: fixed;
    bottom: 20px;
    right: 180px;
    background-color: #28a745;
    color: white;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#call-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

#call-button img {
    width: 24px;
    height: 24px;
}