/* --- KOLAY DEĞİŞTİRİLEBİLİR SABİT TANIMLAMALAR --- */
:root {
    --h1-size: 1.85rem;
    --h2-size: 1.5rem;   /* Baz aldığımız ölçü: 24px */
    --h3-size: 1.25rem;
    --h4-size: 1.1rem;
    --h5-size: 1rem;
    --h6-size: 0.85rem;
    
    --h-weight: 700;     /* 600 yaparak daha zarif bir görünüme geçebilirsin */
    --h-color: #101828;
    --text-color: #475467;
}

/* --- GENEL BAŞLIK YAPILANDIRMASI --- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: var(--h-weight);
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--h-color);
    margin-bottom: 0.75rem;
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
h5 { font-size: var(--h5-size); }
h6 { font-size: var(--h6-size); }

.content-wrap {
/*    max-width: 1080px;*/
    margin: 0 auto;
}

.transfer-article {
    background: #fff;
/*    border: 1px solid #e7edf3;*/
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}

.transfer-hero {
    padding: 6px 0 8px;
}

.transfer-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef7ff;
    color: #0f5fa8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.transfer-hero__title {
    font-size: var(--h1-size); /* Hero Title'ı H1 yaptık */
    line-height: 1.15;
    font-weight: 800;
    color: #101828;
    margin: 0 0 18px;
    letter-spacing: -0.03em;
    text-align: center;
}

.transfer-hero__text {
    font-size: 17px;
    line-height: 1.85;
    color: #475467;
    margin: 0 0 14px;
}

.transfer-section {
    margin: 0;
}

.transfer-section h2 {
    font-size: var(--h2-size);
    line-height: 1.25;
    font-weight: 800;
    color: #101828;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}

.transfer-section h3 {
    font-size: var(--h3-size);
    line-height: 1.35;
    font-weight: 700;
    color: #1d2939;
    margin: 0 0 12px;
}

.transfer-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #475467;
    margin: 0 0 16px;
}

.transfer-box {
    background: #ffffff;
    border: 1px solid #e9eef5;
    border-radius: 18px;
    padding: 22px 24px;
    margin: 0 0 16px;
}

.transfer-box--soft {
    background: #f8fbff;
    border-color: #d9e7f6;
}

.transfer-box__title {
    font-size: var(--h3-size);
    line-height: 1.3;
    font-weight: 700;
    color: #101828;
    margin: 0 0 16px;
}

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

.transfer-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.75;
    color: #475467;
}

.transfer-list li:last-child {
    margin-bottom: 0;
}

.transfer-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #14b8a6;
    position: absolute;
    left: 0;
    top: 10px;
}

.transfer-list--check li::before {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: #0ea5e9;
}

.transfer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.transfer-card {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    padding: 22px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.transfer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.transfer-card h3 {
    font-size: var(--h3-size);
    margin: 0 0 10px;
    color: #101828;
}

.transfer-card p {
    margin: 0 0 14px;
    color: #475467;
}

.transfer-card a {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #0f766e;
    text-decoration: none;
}

.transfer-card a:hover {
    color: #0b5f59;
}

.transfer-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.transfer-feature {
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    padding: 22px;
}

.transfer-feature h3 {
    font-size: 18px;
    margin: 0 0 10px;
}

.transfer-feature p {
    margin: 0;
}

.transfer-option {
    margin: 0;
}

.transfer-article a {
    color: #0f766e;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.transfer-article a:hover {
    border-color: currentColor;
}

.transfer-article strong {
    color: #101828;
}

.transfer-article hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #d7e0ea, transparent);
    margin: 34px 0;
}

@media (min-width: 1400px) {
    .content-wrap {
/*        max-width: 1160px;*/
    }

    .transfer-article {
/*        padding: 42px;*/
    }

    .transfer-hero__title {
        font-size: 1.5px;
    }
}

@media (max-width: 991.98px) {
/* Mobilde fontları bir tık daha daraltıyoruz */
    :root {
        --h1-size: 1.5rem;
        --h2-size: 1.3rem;
        --h3-size: 1.15rem;
    }
    .transfer-article {
        padding: 22px 18px;
        border-radius: 16px;
    }

.transfer-hero__title {
        font-size: var(--h1-size);
    }

    .transfer-section h2 {
        font-size: 1.5rem;
    }

    .transfer-section h3,
    .transfer-card h3 {
        font-size: 19px;
    }

    .transfer-grid,
    .transfer-feature-list {
        grid-template-columns: 1fr;
    }

    .transfer-article hr {
        margin: 24px 0;
    }
}



.review-section {
    max-width: 980px;
    margin: 0 auto;
}

.review-section__head {
    margin-bottom: 34px;
}

.review-section__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef7ff;
    color: #0f5fa8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.review-section__title {
    margin-bottom: 10px;
}

.review-section__text {
    max-width: 640px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #667085;
}

.review-list {
    display: grid;
    gap: 18px;
}

.review-card {
    background: #ffffff;
    border: 1px solid #e7edf3;
    border-radius: 20px;
    padding: 24px 26px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.review-card__top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.review-card__avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9, #14b8a6);
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card__meta {
    min-width: 0;
}

.review-card__name {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #101828;
    margin-bottom: 6px;
}

.review-card__stars {
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
}

.review-card__stars i,
.review-card__stars svg {
    color: #f59e0b;
    font-size: 15px;
}

.review-card__body {
    position: relative;
}

.review-card__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #475467;
}

@media (min-width: 1200px) {
    .review-section {
        max-width: 1040px;
    }

    .review-card {
        padding: 28px 30px;
    }
}

@media (max-width: 767.98px) {
    .review-section__head {
        margin-bottom: 24px;
    }

    .review-card {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .review-card__avatar {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px;
    }

    .review-card__name {
        font-size: 17px;
    }

    .review-card__text {
        font-size: 15px;
        line-height: 1.75;
    }
}



.why-section {
    padding: 70px 0 20px;
}

.why-section__head {
    margin-bottom: 34px;
}

.why-section__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef7ff;
    color: #0f5fa8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
}

.why-section__title {
    margin-bottom: 12px;
}

.why-section__text {
    max-width: 660px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #667085;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.why-grid__item {
    min-width: 0;
}

.why-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e7edf3;
    border-radius: 20px;
    padding: 30px 24px 26px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    border-color: #d8e6f4;
}

.why-card__icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eaf7ff, #eefcf8);
    color: #08b3df;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: inset 0 0 0 1px rgba(8, 179, 223, 0.08);
}

.why-card__title {
    font-size: var(--h3-size); /* 22px'den var'a bağlandı */
    line-height: 1.35;
    font-weight: 700;
    color: #101828;
    margin: 0 0 12px;
}

.why-card__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #667085;
}

@media (max-width: 1199.98px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .why-section {
        padding: 50px 0 10px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 24px 18px 22px;
        border-radius: 16px;
    }

    .why-card__icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
        border-radius: 16px;
        margin-bottom: 14px;
    }

    .why-card__title {
        font-size: 19px;
    }

    .why-card__text {
        font-size: 14px;
        line-height: 1.7;
    }
}


.transfer-routes-section {
    padding: 70px 0 10px;
}

.transfer-routes-section__head {
    margin-bottom: 34px;
}

.transfer-routes-section__title {
    margin-bottom: 10px;
}

.transfer-routes-section__desc {
    display: block;
    max-width: 640px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #667085;
}

.transfer-routes-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.transfer-routes-grid__item {
    min-width: 0;
}

.transfer-route-card {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 22px;
    background: #ffffff;
    border: 1px solid #e7edf3;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.transfer-route-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
    border-color: #d8e6f4;
}

.transfer-route-card__left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.transfer-route-card__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef7ff, #eefcf8);
    color: #08b3df;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.transfer-route-card__content {
    min-width: 0;
}

.transfer-route-card__airport {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    color: #667085;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transfer-route-card__title {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    color: #101828;
    letter-spacing: -0.01em;
}

.transfer-route-card__price {
    min-width: max-content;
    text-align: right;
}

.transfer-route-card__price span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e6edf5;
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
    color: #101828;
    letter-spacing: -0.02em;
}

@media (max-width: 1199.98px) {
    .transfer-routes-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .transfer-routes-section {
        padding: 50px 0 0;
    }

    .transfer-routes-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .transfer-route-card {
        padding: 18px 16px;
        border-radius: 16px;
        gap: 14px;
    }

    .transfer-route-card__icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 18px;
        border-radius: 12px;
    }

    .transfer-route-card__airport {
        font-size: 13px;
    }

    .transfer-route-card__title {
font-size: var(--h3-size); /* 20px'den var'a bağlandı */
    font-weight: 700;
    }

    .transfer-route-card__price span {
        padding: 8px 12px;
        font-size: 18px;
    }
}


/* Montserrat İçin Minimalist Başlık Seti */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Daha zarif bir görünüm için 600 de deneyebilirsin */
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

/* h2 = 1.5rem bazlı hiyerarşi */
h1 { font-size: 1.85rem; }  /* ~30px (Ana başlık h2'den belirgin büyük) */
h2 { font-size: 1.5rem; }   /* 24px (Senin belirlediğin baz ölçü) */
h3 { font-size: 1.25rem; }  /* 20px */
h4 { font-size: 1.1rem; }   /* ~18px */
h5 { font-size: 1rem; }     /* 16px */
h6 { font-size: 0.85rem; }  /* ~14px (Küçük ve zarif) */

/* Mobil Ekranlar İçin (768px altı) */
@media (max-width: 768px) {
    h1 { font-size: 1.5rem; }   /* Mobilde h1, masaüstündeki h2 boyutuna düşer */
    h2 { font-size: 1.3rem; }   /* ~21px */
    h3 { font-size: 1.15rem; }  /* ~18px */
    h4 { font-size: 1rem; }     /* 16px */
    
    /* Mobilde paragrafları da bir tık küçültmek denge sağlar */
    p { font-size: 0.9rem; } 
}

/* Ekstra İpucu: Başlıkların çok "kaba" durduğunu hissedersen şunu ekle */
h1, h2, h3 {
    font-weight: 600; /* Bold (700) yerine Semi-Bold (600) daha prestijli durur */
}


.page-bolge {
    background:
        radial-gradient(circle at top left, rgba(8, 179, 223, 0.08), transparent 32%),
        linear-gradient(180deg, #f5fbff 0, #ffffff 240px);
}

.page-bolge-section {
    padding-bottom: 56px;
}

.page-bolge .region-page-shell,
.page-bolge .faq-section-wrap {
    position: relative;
}

.page-bolge .region-content-card,
.page-bolge .region-faq-card {
    background: linear-gradient(180deg, #ffffff 0, #fbfdff 100%);
    border: 1px solid #e4edf5;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.07);
    overflow: hidden;
    padding: 0;
}

.page-bolge .page-banner {
    margin-bottom: 0;
}

.page-bolge .page-banner img {
    width: 100%;
/*    max-height: 460px;*/
    object-fit: cover;
    display: block;
}

.page-bolge .region-richtext-wrap,
.page-bolge .region-faq-card {
    padding: 34px 40px 38px;
}

.page-bolge .region-richtext {
    color: #475467;
    font-size: 17px;
    line-height: 1.95;
}

.page-bolge .region-richtext > :first-child {
    margin-top: 0 !important;
}

.page-bolge .region-richtext > :last-child {
    margin-bottom: 0 !important;
}

.page-bolge .region-richtext h2,
.page-bolge .region-richtext h3,
.page-bolge .region-richtext h4 {
    color: #101828;
    letter-spacing: -0.03em;
}

.page-bolge .region-richtext h2 {
    font-size: clamp(1.7rem, 2.1vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 46px 0 18px;
    padding-bottom: 16px;
    position: relative;
}

.page-bolge .region-richtext h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 84px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #08b3df, #14b8a6);
}

.page-bolge .region-richtext h3 {
    font-size: clamp(1.35rem, 1.7vw, 1.7rem);
    font-weight: 750;
    margin: 28px 0 12px;
}

.page-bolge .region-richtext h4 {
    font-size: 1.12rem;
    font-weight: 700;
    margin: 20px 0 10px;
}

.page-bolge .region-richtext p {
    color: #4b5563;
    font-size: 17px;
    line-height: 1.95;
    margin: 0 0 18px;
}

.page-bolge .region-richtext ul,
.page-bolge .region-richtext ol {
    background: #f7fbfe;
    border: 1px solid #e5eef5;
    border-radius: 22px;
    margin: 24px 0;
    padding: 22px 26px 22px 34px;
}

.page-bolge .region-richtext ul {
    list-style: none;
    padding: 22px 24px;
}

.page-bolge .region-richtext ul li,
.page-bolge .region-richtext ol li {
    color: #475467;
    margin-bottom: 10px;
    padding-left: 4px;
}

.page-bolge .region-richtext ul li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.page-bolge .region-richtext ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #08b3df, #14b8a6);
    box-shadow: 0 0 0 4px rgba(8, 179, 223, 0.12);
}

.page-bolge .region-richtext ul li:last-child,
.page-bolge .region-richtext ol li:last-child {
    margin-bottom: 0;
}

.page-bolge .region-richtext a {
    color: #0f766e;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 118, 110, 0.24);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.page-bolge .region-richtext a:hover {
    color: #0b5f59;
    border-color: currentColor;
}

.page-bolge .faq-section-wrap {
    margin-top: 28px;
}

.page-bolge .faq-section-title {
    margin-bottom: 28px;
    padding-top: 20px;
    position: relative;
    text-align: center;
}

.page-bolge .faq-section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 110px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, #08b3df, #14b8a6);
}

.page-bolge .faq-section-title h2 {
    font-size: clamp(1.6rem, 2vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0;
}

.page-bolge .faq-accordion .card {
    background: #ffffff;
    border: 1px solid #e5edf4;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
    margin-bottom: 16px;
    overflow: hidden;
}

.page-bolge .faq-accordion .card:last-child {
    margin-bottom: 0;
}

.page-bolge .faq-accordion .card-header {
    background: transparent;
    border-bottom: 0;
    padding: 0;
}

.page-bolge .faq-accordion .btn-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    color: #101828;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
    text-decoration: none;
    white-space: normal;
}

.page-bolge .faq-accordion .btn-link:hover,
.page-bolge .faq-accordion .btn-link:focus {
    color: #0f172a;
    text-decoration: none;
    box-shadow: none;
}

.page-bolge .faq-accordion .btn-link::after {
    content: "+";
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eef7ff, #eefcf8);
    color: #08b3df;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 500;
    line-height: 1;
}

.page-bolge .faq-accordion .btn-link[aria-expanded="true"]::after {
    content: "-";
}

.page-bolge .faq-accordion .card-body {
    background: #fbfdff;
    border-top: 1px solid #edf2f7;
    color: #475467;
    font-size: 16px;
    line-height: 1.9;
    padding: 0 24px 24px;
}

@media (max-width: 991.98px) {
    .page-bolge .region-richtext-wrap,
    .page-bolge .region-faq-card {
        padding: 26px 24px 30px;
    }

    .page-bolge .region-richtext h2 {
        margin-top: 34px;
        padding-bottom: 14px;
    }
}

@media (max-width: 767.98px) {
    .page-bolge-section {
        padding-bottom: 40px;
    }

    .page-bolge .region-content-card,
    .page-bolge .region-faq-card {
        border-radius: 20px;
    }

    .page-bolge .region-richtext-wrap,
    .page-bolge .region-faq-card {
        padding: 22px 16px 24px;
    }

    .page-bolge .page-banner img {
        max-height: 260px;
    }

    .page-bolge .region-richtext,
    .page-bolge .region-richtext p {
        font-size: 15px;
        line-height: 1.8;
    }

    .page-bolge .region-richtext h2 {
        font-size: 1.45rem;
        margin: 28px 0 14px;
        padding-bottom: 12px;
    }

    .page-bolge .region-richtext h3 {
        font-size: 1.2rem;
    }

    .page-bolge .region-richtext ul,
    .page-bolge .region-richtext ol {
        border-radius: 16px;
        padding: 18px 18px 18px 26px;
    }

    .page-bolge .region-richtext ul {
        padding: 18px 16px;
    }

    .page-bolge .region-richtext ul li {
        font-size: 15px;
        padding-left: 26px;
    }

    .page-bolge .region-richtext ul li::before {
        top: 10px;
        width: 10px;
        height: 10px;
    }

    .page-bolge .faq-section-title {
        padding-top: 16px;
        margin-bottom: 20px;
    }

    .page-bolge .faq-accordion .btn-link {
        font-size: 1rem;
        padding: 18px 16px;
    }

    .page-bolge .faq-accordion .card-body {
        font-size: 15px;
        line-height: 1.8;
        padding: 0 16px 18px;
    }
}
