.service-text-content ul {
    list-style: disc outside !important;
    padding-left: 22px !important;
    margin: 8px 0 !important;
}

.service-text-content ul li {
    list-style: disc outside !important;
    display: list-item !important;
    margin-bottom: 5px !important;
    line-height: 1.5;
}

.service-text-content ol {
    list-style: decimal outside !important;
    padding-left: 22px !important;
    margin: 8px 0 !important;
}

.service-text-content ol li {
    list-style: decimal outside !important;
    display: list-item !important;
    margin-bottom: 5px !important;
    line-height: 1.5;
}

.service-text-content ul li p,
.service-text-content ol li p {
    margin: 0 !important;
    padding: 0 !important;
}

.service-text-content strong,
.service-text-content b {
    font-weight: 700 !important;
}

.sub-title {
    color: #fff !important;
}

.contact-section .sub-title {
    color: var(--theme-color2) !important;
}

.btn-one {
    color: #fff !important;
}

.guncel-haber-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.guncel-haber-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.guncel-haber-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 35, 0.75);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.guncel-haber-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 860px;
    display: grid;
    grid-template-columns: 48% 52%;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s ease;
}

.guncel-haber-popup.active .guncel-haber-card {
    transform: translateY(0) scale(1);
}

.guncel-haber-kapat {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #1b2638;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.14);
    transition: all 0.25s ease;
}

.guncel-haber-kapat:hover {
    background: #1b2638;
    color: #ffffff;
    transform: rotate(90deg);
}

.guncel-haber-gorsel {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    background: #f1f1f1;
}

.guncel-haber-gorsel a {
    display: block;
    width: 100%;
    height: 100%;
}

.guncel-haber-gorsel img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.guncel-haber-gorsel:hover img {
    transform: scale(1.04);
}

.guncel-haber-tarih {
    position: absolute;
    left: 20px;
    bottom: 20px;
    padding: 9px 15px;
    background: #ffffff;
    color: #1b2638;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.14);
}

.guncel-haber-icerik {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 45px 45px;
}

.guncel-haber-etiket {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-bottom: 15px;
    padding: 7px 13px;
    background: rgba(30, 90, 160, 0.1);
    color: #1e5aa0;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.guncel-haber-baslik {
    margin: 0 0 17px;
    font-size: 29px;
    line-height: 1.25;
    font-weight: 700;
}

.guncel-haber-baslik a {
    color: #172033;
    text-decoration: none;
    transition: color 0.25s ease;
}

.guncel-haber-baslik a:hover {
    color: #1e5aa0;
}

.guncel-haber-ozet {
    margin: 0 0 27px;
    color: #657086;
    font-size: 15px;
    line-height: 1.7;
}

.guncel-haber-buton {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.guncel-haber-buton i {
    transition: transform 0.25s ease;
}

.guncel-haber-buton:hover i {
    transform: translateX(4px);
}

body.guncel-haber-acik {
    overflow: hidden;
}

@media (max-width: 767px) {
    .guncel-haber-popup {
        align-items: flex-start;
        overflow-y: auto;
        padding: 25px 15px;
    }

    .guncel-haber-card {
        display: block;
        max-width: 480px;
    }

    .guncel-haber-gorsel {
        min-height: 230px;
        height: 230px;
    }

    .guncel-haber-gorsel img {
        min-height: 230px;
        height: 230px;
    }

    .guncel-haber-icerik {
        padding: 30px 25px 35px;
    }

    .guncel-haber-baslik {
        font-size: 23px;
    }

    .guncel-haber-ozet {
        font-size: 14px;
    }
}

.faq-grid {
    row-gap: 50px;
}

.faq-grid .faq-column {
    display: flex;
    flex-direction: column;
}

.faq-grid .faq-column .inner-column {
    width: 100%;
}

@media (max-width: 991px) {
    .faq-grid {
        row-gap: 35px;
    }
}

.faq-column .sec-title {
    min-height: 50px;
    display: flex;
    align-items: flex-end;
}

.faq-column .sec-title h3 {
    margin-bottom: 0;
}

.faq-column {
    margin-bottom: 50px;
}

.faq-column .sec-title h3 {
    color: var(--theme-color2) !important;
}

.faq-column .sec-title {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 25px !important;
}

.faq-column .sec-title h3 {
    color: var(--theme-color2) !important;
    margin: 0;
    font-weight: 700;
}

.faq-column .sec-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 3px;
    background: var(--theme-color2);
    border-radius: 10px;
}

.team-details__content strong,
.team-details__content b {
    font-weight: 700 !important;
}