/* ===================================================================
   İCASHS KONFERANS SİTESİ - BİRLEŞTİRİLMİŞ & YENİDEN YAPILANDIRILMIŞ STİL DOSYASI
   -------------------------------------------------------------------
   Açıklama: Bu dosya, 'index.css' ve menülere ait CSS dosyalarının
   hiçbir kural silinmeden veya değiştirilmeden birleştirilmiş ve
   daha modüler, yönetilebilir bir yapıya kavuşturulmuş halidir.

   YAPI:
   - BÖLÜM 1: Sitedeki tüm sayfaları etkileyen genel ve ortak stiller.
   - BÖLÜM 2: Sadece belirli bir sayfayı veya sayfaları etkileyen özel stiller.
   - BÖLÜM 3: Genel ve sayfaya özel elemanlar için mobil uyumluluk (media query) kuralları.
   =================================================================== */

/* ===================================================================
   BÖLÜM 1: GENEL / ORTAK STİLLER
   (Tüm Sayfalar İçin Geçerlidir)
   =================================================================== */

/* --- 1.1 Genel Ayarlar --- */
body {
    font-family: 'Cambria', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #35048f;
    opacity: 1;
    transition: opacity 0.2s ease;
}

body.fade-out {
    opacity: 0;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 1.2 Üst Bilgi Şeridi (Top Bar) --- */
.top-bar {
    background-color: #11058f;
    padding: 10px 0;
    font-family: 'Cambria', sans-serif;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
}

.top-bar .contact-info a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 10px;
}

.top-bar .contact-info span {
    margin: 0 5px;
    color: #ffffff;
}

.top-bar .social-links {
    display: flex;
    align-items: center;
    gap: 33px;
}

.top-bar .social-links a {
    color: #ffffff;
    font-size: 16px;
    margin-left: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar .social-links a:hover {
    color: #ffffff;
}

/* --- 1.3 Ana Başlık (Header) & Navigasyon --- */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    height: 60px;
}

.logo-text {
    font-size: 33px;
    font-weight: bold;
    color: #11058f;
    text-decoration: none;
    margin-top: 18px;
}

.menu-toggle {
    display: none;
}
.main-nav {
    margin-right: 80px;
    margin-top: 18px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 5px;
    gap: 30px;
}

.main-nav ul li {
    position: relative;
}

.main-nav a {
    display: block;
    color: #11058f;
    text-decoration: none;
    padding: 20px 15px;
    font-weight: bold;
    font-size: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.main-nav a:hover {
    color: #a84d10;
    transform: scale(1.1);
}

/* Alt Menü (Submenu) Stilleri */
.has-submenu > a::after {
    content: "⮟";
    font-size: 15px;
    margin-left: 6px;
    font-weight: bold;
}

.has-submenu:hover > a::after {
    transform: rotate(180deg);
}

.main-nav ul li .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    list-style: none;
    padding: 0;
    min-width: 180px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 1100;
}

.submenu li a {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.submenu li a:hover {
    transform: scale(1.08);
    background-color: #f5f5f5;
    color: #a84d10;
}
.main-nav ul li:hover > .submenu {
    display: block;
}
.submenu li:last-child a {
    border-bottom: none;
}

/* --- 1.4 Ana Karşılama Alanı (Hero) Ortak Stilleri --- */
.hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    z-index: 1;
}

.slide.active-slide {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    transform: translateY(50px);
    opacity: 0;
    transition: transform 1s ease-out, opacity 1s ease-out;
}

.hero-content.slide-in {
    transform: translateY(0);
    opacity: 1;
}

/* --- 1.5 İçerik Bölümleri (Genel Welcome Stilleri) --- */
.welcome-section {
    padding: 60px 20px;
    background-color: #e5e7f1;
}

.welcome-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.welcome-box:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.50);
}


/* ===================================================================
   BÖLÜM 2: SAYFAYA ÖZEL STİLLER
   (Her bloğun stili yalnızca kendi sayfasını etkiler)
   =================================================================== */

/* --- 2.1 ANASAYFA (.page--index) --- */
.page--index .hero {
    height: 77vh;
}

.page--index .hero-content h1 {
    font-size: 25px;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}

.page--index .hero-content h2 {
    font-size: 66px;
    margin: 5px 0;
    padding-top: 5px;
    padding-bottom: 15px;
}

.page--index .hero-content p {
    font-size: 20px;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 15px;
    font-family: 'Cambria';
}

.page--index .welcome-box h3 {
    font-size: 30px;
    color: #11058f;
    margin-top: 0;
}

.page--index .welcome-box h4 {
    font-size: 20px;
    color: #11058f;
    margin-top: 0;
}

.page--index .welcome-box p {
    font-size: 20px;
    line-height: 1.7;
    color: #000000;
    text-align: justify;
    margin-bottom: 1em;
    font-family: 'Cambria';
}

.page--index .logo-gallery {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.page--index .logo-gallery img {
    height: 100px;
    width: auto;
    max-width: 250px;
    display: block;
    object-fit: contain;
}

.page--index .main-footer {
    height: 200px;
    background-color: #11058f;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 35px;
    margin-top: 20px;
    font-family: 'Cambria';
}

.page--index .main-footer p {
    margin: 1px;
    font-family: 'Cambria';
}

.page--index .main-footer p:nth-child(1) {
    text-align: center;
    font-size: 25px;
    padding-top: 25px;
    padding-bottom: 1px;
}
.page--index .main-footer p:nth-child(2) {
    text-align: center;
    font-size: 23px;
    padding-top: 5px;
    padding-bottom: 0px;
}
.page--index .main-footer p:nth-child(3) {
    text-align: left;
    font-size: 20px;
    padding-top: 55px;
    padding-bottom: 1px;
}

/* --- 2.2 MENÜ SAYFALARI (GENEL) --- */
/* (Anasayfa dışındaki tüm sayfalar için geçerli temel stiller) */
.page--About .hero, .page--Aim .hero, .page--acomu .hero, .page--bilim .hero, .page--contac .hero, .page--importans .hero, .page--keynotes .hero, .page--organize .hero, .page--paper .hero, .page--Rules .hero, .page--program .hero, .page--Regis .hero, .page--venue .hero {
    height: 40vh;
}
    .slide::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.4);
    }
    .hero-content h1 {
        font-size: 27px;
        margin: 0;
        padding-top: 5px;
        padding-bottom: 5px;
    }
    .hero-content h2 {
        font-size: 50px;
        margin: 5px 0;
        padding-top: 5px;
        padding-bottom: 15px;
    }
    .hero-content p {
        font-size: 25px;
        margin: 0;
        padding-top: 5px;
        padding-bottom: 1px;
    }
    /* Welcome Box İçerikleri */
    .welcome-box h1 {
        font-size: 20px;
        font-family: 'cambria';
        font-weight: lighter;
        color: #000000;
        text-align: justify;
        margin-bottom: 20px;
        font-family: 'Cambria';
    }
    .welcome-box h2 {
        font-size: 20px;
        font-family: 'cambria';
        color: #000000;
        margin-top: 0;
    }
    .welcome-box p {
        font-size: 20px;
        font-family: 'Camabira';
        line-height: 1.7;
        color: #000000;
        text-align: justify;
        display: inline-block;
        vertical-align: top;
        margin: 10px;
    }
    /* Footer */
    .main-footer {
        height: 270px;
        background-color: #11058f;
        color: #fff;
        text-align: center;
        padding: 1px;
        font-size: 1px;
        font-family: 'Cambria';
    }
    .main-footer p {
        margin: 1px;
        font-family: 'Cambria';
    }
    .main-footer p:nth-child(1) {
        text-align: center;
        font-size: 25px;
        padding-top: 25px;
        padding-bottom: 1px;
    }
    .main-footer p:nth-child(2) {
        text-align: center;
        font-size: 23px;
        padding-top: 5px;
        padding-bottom: 0px;
    }
    .main-footer p:nth-child(3) {
        text-align: left;
        font-size: 20px;
        padding-top: 111px;
        padding-bottom: 1px;
    }


/* --- 2.3 HAKKINDA SAYFASI (.page--About) --- */
/* Bu sayfanın özel bir stili bulunmamaktadır. Genel menü stillerini kullanır. */


/* --- 2.4 AMAÇ & KAPSAM SAYFASI (.page--Aim) --- */
.page--Aim .aim-section .welcome-box p {
    font-family: 'cambria';
    font-size: 20px;
    line-height: 1.8;
    color: #000000;
    text-align: justify;
    margin-bottom: 2px;
}

/* --- 2.5 KONAKLAMA SAYFASI (.page--acomu) --- */
.page--acomu .acumo-section h2 {
    color:  #0b4d8e;
    font-weight: 600;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    text-align: left;
}

.page--acomu .acumo-section h2:nth-of-type(2) {
    color: #0b4d8e;;
    
}

.page--acomu .acumo-section h2 ~ p {
    display: block;
    align-items: flex-start;
    font-size: 1.1rem;
    color: #0d0d0d;
    line-height: 1.7;
}

.page--acomu .acumo-section h2 ~ p::before {
    
    width: 2px;
    flex-shrink: 0;
}

.page--acomu .acumo-section h2 ~ p a {
    color: #0f66c2;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.page--acomu .acumo-section p:last-of-type {
    background-color: #f8f9fa;
    border-left: 4px solid #ff1307;
    padding: 12px 15px;
    border-radius: 4px;
    font-style: italic;
    font-size: 1.1rem;
    color: #e51f1f;
    margin-top: 1.1rem;
    display: block;
}

.page--acomu .acumo-section p {
    color: #030303;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

.page--acomu .acumo-section .lead {
    font-size: 1.1rem;
    color: #0a0a0a;
    margin-bottom: 2rem;
    font-family: 'Cambria';
}

.page--acomu .acumo-section p:nth-of-type(3) {
    padding: 2px;
    border-radius: 4px;
    font-style: normal;
    font-family: 'Cambria';
    text-align: justify;
}


.page--acomu .acumo-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem !important;
}

.page--acomu .acumo-section ul li {
    display: flex;
    align-items: list-item;
    list-style: none;
    margin-bottom: 1px;
    font-size: 1.1rem;
    color: #0d0d0d;
    font-family: 'Cambria';
}

.page--acomu .acumo-section ul li::before {
    content: '✓';
    color: #11c017;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 10px;
    position: relative;
    top: 1px;
}

.page--acomu .acumo-section hr {
    border: 0;
    border-top: 1px solid #e9ecef;
    margin: 1.1rem 0;
}

.page--acomu .acumo-section .address-block {
    margin-bottom: 1.9rem;
    line-height: 1;
    font-size: 1rem;
    color: #060606;
}

.page--acomu .acumo-section .address-block strong {
    display: block;
    font-size: 20rem;
    color: #000000;
    margin-bottom: 0.25rem;
}

.page--acomu .acumo-section .map-container {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.page--acomu .acumo-section .ratio {
    position: relative;
    width: 50%;
    margin: 0 auto;
}

.page--acomu .acumo-section .ratio-16x9::before {

    display: block;
    padding-top: 5%;
}

.page--acomu .acumo-section .ratio iframe {
    width: 50%;
    height: 50%;
    border: 1px;
}

.page--acomu .acumo-section .rounded {
    border-radius: 1rem;
}

.page--acomu .acumo-section .welcome-box {
    display: flex;
    justify-content: center;
}



/* --- 2.6 BİLİM KURULU SAYFASI (.page--bilim) --- */
.page--bilim .scientific-committee-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: 'Cambria', sans-serif;
    color: #333;
    width: 100%;
}

.page--bilim .committee-row {
    display: grid;
    grid-template-columns: 20% 30% 50%;
    align-items: center;
    padding: 15px 20px;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page--bilim .committee-header {
    background-color: #11058f;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1em;
}

.page--bilim .committee-body .committee-row {
    background-color: #f8f9fa;
}

.page--bilim .committee-body .committee-row:nth-child(even) {
    background-color: #e9ecef;
}

.page--bilim .committee-body .committee-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page--bilim .header-cell,
.page--bilim .cell {
    text-align: left;
    display: flex;
    align-items: center;
}

.page--bilim .cell .material-icons {
    color: #a84d10;
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.page--bilim .scientific-committee-table {
    font-family: 'Cambria';
}


/* --- 2.7 İLETİŞİM SAYFASI (.page--contac) --- */
.page--contac .contact-section {
    background-color: #ecf4f9;
    padding: 50px 0;
    font-family: 'Roboto', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.page--contac .contact-section .welcome-box {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 10px;
}

.page--contac .contact-section > .welcome-box > p:first-of-type {
    background-color: #ffffff;
    border-top: 4px solid #0d47a1;
    font-family: 'cambria';
    padding: 1.5rem;
    border-radius: 20px;
    font-size: 1rem;
    line-height: 1.9;
    color: #000000;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    font-family: 'Cambria';
    font-size: 1.1rem;
}

.page--contac .contact-section .contact-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.page--contac .contact-section .contact-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    margin-bottom: 0.5rem;
    margin-top: 0.rem;
}

.page--contac .contact-section .contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d47a1;
    margin: 0 0 1rem 0;
    font-family: 'Cambria';
}

.page--contac .contact-section .contact-card .contact-name {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: #000000;
    font-family: 'Cambria';
    margin: 0;
}
.page--contac .contact-section .contact-cards-container .contact-card:last-child {
    margin-bottom: 2em;
}

.page--contac .contact-section .contact-card .contact-info {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #2a1f1f;
    font-family: 'Cambria';
    margin: 0;
}

.page--contac .contact-section .material-icons {
    margin-right: 25px;
    vertical-align: middle;
    font-size: 24px;
    color: #0d47a1;
}

.page--contac .contact-section .contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.page--contac .contact-section .contact-info a:hover {
    color: #9ca9b7;
    text-decoration: underline;
}

/* --- 2.8 ÖNEMLİ TARİHLER SAYFASI (.page--importans) --- */
.page--importans .schedule-list {
    max-width: 700px;
    width: 800px;
    margin: 0 auto;
     gap: 1px;
}
.page--importans .schedule-item {
    background-color: #d3daf3;
    border-radius: 2px;
    padding: 18px 0px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.page--importans .schedule-item:nth-child(even) {
    background-color: #f9fafe;
}

.page--importans .schedule-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(255, 255, 255, 0.1);
}


.page--importans .schedule-title {
    font-weight: bold;
    font-size: 20px;
    font-family: 'Cambria';
    color: #000000;
    display: block;
    margin-bottom: 1px;
}

.page--importans .schedule-date {
    font-size: 24px;
    font-family: 'Cambria';
    color: #060606;
    display: block;
    margin-bottom: 1px;
}
  
.page--importans .calendar-icon {
    width: 25px;
    height: 25px;
    stroke: currentColor;
    flex-shrink: 0;
    color: #e01a16;
  }
  

/* --- 2.9 ANA KONUŞMACILAR SAYFASI (.page--keynotes) --- */
/* Bu sayfanın özel bir stili bulunmamaktadır. Genel menü stillerini kullanır. */


/* --- 2.10 ORGANİZASYON KOMİTESİ SAYFASI (.page--organize) --- */
.page--organize .photo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.page--organize .photo-item {
    text-align: center;
    font-family: 'Cambria', sans-serif;
    color: #333;
}

.page--organize .photo-row:has(.photo1) {
    display: block;
}

.page--organize .photo-row:has(.photo2) {
    display: block;
}
.page--organize .photo-item.photo1,
.page--organize .photo-item.photo2 {
    margin: 0 auto 30px;
    max-width: 400px;
}

.page--organize .photo-item.photo1 img.photo,
.page--organize .photo-item.photo2 img.photo {
    width: 250px;
    height: 250px;
}

.page--organize .photo-item.photo1 .person-name,
.page--organize .photo-item.photo2 .person-name {
    font-size: 19px;
}

.page--organize .photo-item.photo1 .person-title,
.page--organize .photo-item.photo2 .person-title {
    font-size: 15px;
}



.page--organize .photo-row:has(.photo12) .photo-item {
    flex-basis: 48%;
}

.page--organize .photo-item img.photo {
    width: 180px;
    height: 180px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 25%;
    box-shadow: 0 0 0 4px #fff, 0 0 0 8px #11058f;
}

.page--organize .person-name {
    display: block;
    font-size: 17px;
    font-weight: 600;
}

.page--organize .person-title {
    display: block;
    font-size: 14px;
    color: #a84d10;
    margin-top: 5px;
}

/* --- 2.11 BİLDİRİ YAZIM FORMATI SAYFASI (.page--paper.format) --- */
/* NOT: body class'ı "page--paper format" olduğu için, seçici ".page--paper.format" şeklindedir. */
.page--paper .rules-original-format {
    color: #21578c;
}

.page--paper .language-section {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #060606;
    font-family: 'Cambria';
    color: #21578c;
    background-color: #fbfcfd;
    border: 1px solid #21578c;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 10px 20px;
    margin-bottom: 3px;
}

.page--paper .language-section h2 {
    font-family: 'Cambria';
    font-size: 30px;
    color: #0b4d8e;
    text-align: left;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
    font-weight: 700;
    text-align: center;
    margin-top: 3;
    margin-bottom: 2px;
    padding-bottom: 5px;
    border-bottom: 2px solid #0b4d8e;
}

.page--paper .language-section h3 {
    font-family: 'Cambria';
    font-size: 22px;
    color: #0b4d8e;
    text-align: justify;
    line-height: 1.8;
    font-size: 30px;
    font-weight: 600;
    color: #090909;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 2px solid #0b4d8e;
    padding-left: 15px;
    text-align: left;
}

.page--paper .rules-original-format .language-section p {
    color: #000;
    background-color: #fbfcfd;
    font-family: 'Cambria';
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    text-align: justify;
    margin-right: 5px;
    text-decoration: none;
    padding: 5px 2px;
    border-radius: 2px;
}

.page--paper .language-section p {
    font-family: 'Cambria';
    font-size: 18px;
    color: #010101;
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 15px;
}


.page--paper .rules-original-format .language-section p strong {
    color: #000;
    background-color: #fbfcfd;
    font-family: 'Cambria';
    font-size: 1em;
    font-style: normal;
    font-weight: 800;
    text-align: left;
    display: inline-block;
    margin-right: 0;
    text-decoration: none;
    padding: 5px 0px;
    border-radius: 1px;
}

.page--paper .language-section p strong {
    font-weight: 700;
    color: #050505;
}


.page--paper .rules-original-format .language-section[dir="rtl"] p strong {
    font-family: 'Sakkal Majalla', serif;
    font-size: 1.1em;
    font-weight: 700;
    font-style: normal;
    color: #000000;
    background-color: #fbfcfd;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 0;
    margin-left: 1px;
}

.page--paper .language-section[dir="rtl"] {
    font-family: 'Sakkal Majalla', serif;
    color: #0c0d0f;
    background-color: #fbfcfd;
    border: 1px solid #0b4d8e;
    box-shadow: 0 4px 10px rgba(196, 154, 108, 0.1);
}

.page--paper .language-section[dir="rtl"] h2 {
    font-family: 'Sakkal Majalla', serif;
    font-size: 40px;
    font-weight: 700;
    color: #0b4d8e;
    text-align: center;
    border-bottom: 2px solid #0b4d8e;
}

.page--paper .language-section[dir="rtl"] h3 {
    font-family: 'Sakkal Majalla';
    font-size: 24px;
    color: #000000;
    text-align: right;
    margin-top: 1rem;
    font-size: 33px;
    font-weight: 600;
    color: #0b4d8e;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: none;
    border-right: 2px solid #0b4d8e;
    padding-left: 0;
    padding-right: 15px;
}

.page--paper .language-section[dir="rtl"] p {
    font-size: 25px;
    text-align: justify;
    font-family: 'Sakkal Majalla';
}

.page--paper .language-section[dir="rtl"] p,
.page--paper .language-section[dir="rtl"] li {
    font-family: 'Sakkal Majalla', serif;
    font-size: 22px;
    color: #050303;
    font-weight: 500;
    text-align: justify;
    line-height: 2.0;
    margin-bottom: 15px;
}


.page--paper .yazim-kurallari-container .language-section h4 {
    font-family: 'Sakkal Majalla';
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
    font-family: 'cambria';
    font-weight: 700;
    color: #000000;
    padding-right: 35px;
}

.page--paper .yazim-kurallari-container .language-section h4 + ul {
    list-style-type: disc;
    padding-left: 40px;
}

.page--paper .yazim-kurallari-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
}

.page--paper .language-section li {
    font-family: 'Cambria';
    font-size: 18px;
    color: #010101;
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 15px;
}

.page--paper .language-section ol,
.page--paper .language-section ul {
    padding-left: 11px;
}

.page--paper .language-section li::marker {
    color: #0c1217;
    font-weight: 700;
    font-size: 1em;
}

.page--paper .language-section[dir="rtl"] p strong {
    font-weight: 700;
    color: #000000;
}

.page--paper .language-section[dir="rtl"] ol,
.page--paper.language-section[dir="rtl"] ul {
    padding-right: 15px;
    padding-left: 0;
}

.page--paper .language-section[dir="rtl"] ol.no-bullet {
    list-style-type: none;
    padding-right: 10px;
    margin-right: 25px;
}

.page--paper .language-section[dir="rtl"] ol.no-bullet li {
    margin-bottom: 1px;
    display: flex;
    align-items: center;
}

.page--paper .language-section[dir="rtl"] ol.no-bullet li .list-arrow {
    color: #000000;
    font-size: 0.8em;
    margin-left: 10px;
}

.page--paper .language-section[dir="rtl"] ol.no-bullet li .list-text {
    font-family: 'Sakkal Majalla', serif;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.page--paper .yazim-kurallari-container .language-section[dir="rtl"] h4 {
    font-family: 'Sakkal Majalla', serif;
    font-size: 25px;
    font-weight: 700;
    color: #000000;
    text-align: right;
    padding-right: 35px;
}

.page--paper .yazim-kurallari-container .language-section[dir="rtl"] h4 + ul {
    list-style-type: disc;
    padding-right: 35px;
    padding-left: 0;
}

.page--paper ul.no-bullet,
.page--paper ol.no-bullet {
    list-style-type: none;
    padding-left: 0;
}

/* RTL listeleri için genel ayarlar */
.language-section[lang="ar"] {
    direction: rtl;
    text-align: right;
}
.language-section[lang="ar"] ol,
.language-section[lang="ar"] ul {
    padding-right: 2em;
    padding-left: 0;
    margin: 0;
}
.language-section[lang="ar"] li {
    text-align: right;
    direction: rtl;
}
ol.no-bullet {
    list-style: none;
    padding: 0;
    margin: 0;
}
ol.no-bullet li {
    display: block;
    margin-bottom: 0.3em;
}
ol.no-bullet.rtl {
    direction: rtl;
    text-align: right;
}
ul, ol {
    padding-left: 1.2em;
    margin: 0.5em 0;
}
.language-section[lang="tr"] ul,
.language-section[lang="tr"] ol {
    padding-left: 1.2em;
    margin: 0.3em 0;
}
.language-section[lang="tr"] li {
    margin-bottom: 0.3em;
}
.language-section[lang="tr"] ul.no-bullet li {
    list-style: none;
    padding-left: 1em;
    text-indent: 0;
    margin-bottom: 0.3em;
}
.language-section[lang="tr"] ul.no-bullet li::before {
    content: "➤";
    margin-right: 0.3em;
}
.language-section[lang="tr"] ul,
.language-section[lang="tr"] ol {
    list-style-position: inside;
    padding-left: 20px;
    margin-left: 0;
}
.language-section[dir="rtl"] ul,
.language-section[dir="rtl"] ol {
    list-style-position: inside;
    padding-right: 20px;
    margin-right: 0;
}

/* --- 2.12 PROGRAM SAYFASI (.page--program) --- */
.page--program .program-section .welcome-box p {
    color: #000000;
    font-family: 'Cambria';
    font-size: 1.4rem;
    font-style: normal;
    text-align: center;
    line-height: 1.9;
}


/* --- 2.13 KAYIT SAYFASI (.page--Regis) --- */
.page--Regis .fee-table-container {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(238, 239, 240, 0);
    overflow: hidden;
    margin: 30px 0;
    border: 1px solid #5d5d62;
}

.page--Regis .fee-table-row {
    display: grid;
    grid-template-columns: 40% 30% 30%;
    align-items: center;
    columns: #f4f5f6;;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.3s ease;
}

.page--Regis .fee-table-header {
    background-color: #11058f;
    color: #e4eef8;
    font-weight: bold;
    font-size: 1.1em;
}
.page--Regis .fee-table-header .header-cell {
    padding: 15px 20px;
}

.page--Regis .fee-table-body .cell {
    padding: 15px 20px;
    border-top: 1px solid #fdfeff;
    font-weight: bold;
    font-size: 1em;
    color: #000000;
}

.page--Regis .fee-table-body .fee-table-row:nth-child(odd) {
    background-color: #e3e7f9;
}

.page--Regis .fee-table-body .fee-table-row:nth-child(even) {
    background-color: #f8f9fa;
}

.page--Regis .fee-table-body .fee-table-row:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(217, 222, 227, 0.12);
    background-color: #eff1f6;
}

.page--Regis .fee-notes {
    margin-top: 25px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9em;
    color: #000000;
    text-align: left;
}
.page--Regis .fee-notes p {
    margin: 10px 0;
}


/* --- 2.14 MEKAN & ETKİNLİKLER SAYFASI (.page--venue) --- */
.page--venue .venue-section {
    background-color: #e8edf9;
    padding: 50px 15px;
    font-family: 'Cambria', serif;
}

.page--venue .venue-section .welcome-box {
    max-width: 800px;
    margin: 0 auto;
}

.page--venue .venue-section .bg-white {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.05);
    border: 1px solid #ffffff;
    text-align: left;
    padding: 2rem;
}

.page--venue .venue-section h1.lead {
    font-size: 1.2rem;
    font-weight: 900;
    color: #000000;
    margin-bottom: 0.5rem;
}

.page--venue .venue-section h2 {
    font-size: 1.4rem;
    font-weight: 400;
    color:  #000000;
    margin-bottom: 0.5 rem;
}

.page--venue .venue-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0b4d8e;
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    gap: 5px;
}

.page--venue .venue-section p {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: block;
    text-align: justify;
}

.page--venue .venue-section ul,
.page--venue .venue-section ol {
    padding-left: 15px;
    margin-bottom: 1.5rem;
    font-family: 'Cambria',;
    color: #0a0a0a;
    font-size: 1.1rem;
    line-height: 1.6;
}

.page--venue .venue-section ul li {
    list-style: none;
    position: relative;
    padding-left: 15px;
    margin-bottom: 0.5rem;
    text-align: justify;
}

.page--venue .venue-section ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #010101;
    font-weight: 700;
    width: 1px;
    height: 50px;
    text-align: center;
    line-height: 20px;
    font-size: 1.5rem;
}

.page--venue .venue-section .emoji-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 25px;
    background-color: #ffffff;
    font-size: 1.2rem;
}

.page--venue .venue-section hr {
    border: 0,9px;
    height: 0px;
    background-color: #060606;
    margin: 2rem 0;
}


/* ========================================================== */
/* RULES GALERİSİ STİLLERİ (TÜM ÇAKIŞMALAR GİDERİLDİ)
/* ========================================================== */


.page--Rules .language-section {
    margin-bottom: 1rem; 
    padding-bottom: 1.rem;
    border-bottom: 2px solid #060606;
}

.page--Rules .language-section h2 {
    font-family: 'Cambria';
    font-size: 30px;
    color: #0b4d8e;
    text-align: center; /* DÜZELTME 1: 'justify' yerine 'center' olarak güncellendi. */
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.9rem;
}

.page--Rules .language-section h3 {
    font-family: 'Cambria';
    font-size: 22px;
    color: #000000;
    text-align: justify;
    line-height: 1.4;
    margin-left: 10px;    
    
    
}

.page--Rules .rules-original-format .language-section p {
    color: #000;
    font-family: 'Cambria';
    font-size: 19px;   
    font-style: normal; 
    font-weight: 500;
    text-align: justify;
    margin-right: 5px; 
    text-decoration: none; 
    padding: 5px 2px;
    border-radius: 2px; 
}
 
.page--Rules .rules-original-format .language-section p strong {
    color: #000;
    background-color: #ffffff;
    font-family: 'Cambria';
    font-size: 1em;   
    font-style: normal; 
    font-weight: 800;
    text-align: left;
    display: inline-block;
    margin-right: 0; 
    text-decoration: none; 
    padding: 5px 0px;
    border-radius: 1px; 
}

/* --- Arapça p strong Ayarları --- */
.page--Rules .rules-original-format .language-section[dir="rtl"] p strong {
    font-family: 'Sakkal Majalla';
    font-size: 1.1em;
    font-weight: 700;
    font-style: normal;
    color: #000000;
    background-color: #fbfcfd;
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 0;
    margin-left: 1px;
}

.page--Rules .language-section[dir="rtl"] {
    font-family: 'Sakkal Majalla';
    color: #0c0d0f;
}

.page--Rules .language-section[dir="rtl"] h2 {
    font-family: 'Sakkal Majalla';
    font-size: 40px;
    color: #0b4d8e;
    text-align: center;
    margin-top: 1rem;
}
.page--Rules .language-section[dir="rtl"] h3 {
    font-family: 'Sakkal Majalla';
    font-size: 24px;
    color: #000000;
    text-align: right;
    margin-top: 1rem;
}

.page--Rules .language-section[dir="rtl"] p {
    font-size: 25px;
    text-align: justify; 
    font-family: 'Sakkal Majalla';
}
 
.page--Rules .yazim-kurallari-container .language-section h4 {
    font-family: 'Sakkal Majalla';
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
}

.page--Rules .yazim-kurallari-container .language-section h4 + ul {
    list-style-type: disc;
    padding-left: 40px;
}
/* ===================================================================
   BÖLÜM 3: GELİŞTİRİLMİŞ MOBİL UYUMLULUK (MEDIA QUERIES)
   (Tüm Sayfalar İçin Geçerlidir - Küçük Ekran Hataları Giderildi)
   =================================================================== */

   @media (max-width: 768px) {


    .main-header .container {
        flex-wrap: nowrap;
    }
    .logo-text {
        font-size: 24px;
    }
    .logo img {
        height: 50px;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #11058f;
        font-size: 40px; /* İkonu biraz daha belirgin hale getirelim */
        cursor: pointer;
        z-index: 1002; /* Her şeyin üstünde olmalı */
    }
    
    .main-nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 66px; /* Header yüksekliğine göre ayarlandı, çakışmayı önler */
        left: 0;
        width: 100%; /* Genişliği biraz artırarak daha okunaklı hale getirelim */
        max-width: 200px; /* Çok geniş ekranlarda fazla büyümesini engeller */
        background-color: #ffffff;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.5); /* Gölge daha belirgin */
        padding: 0;
        gap: 0;
        z-index: 1001; /* Ana içerikten üstte, toggle'dan altta */
    }
    
    .main-nav a {
        padding: 18px 20px; /* İç boşluklar düzenlendi */
        border-bottom: 1px solid #f0f0f0; /* Her menü öğesi arasına ince bir çizgi */
    }

    .main-nav ul li:last-child a {
        border-bottom: none; /* Son elemanın alt çizgisini kaldır */
    }
    
    .main-nav ul.show-menu {
        display: flex;
    }
    
    .main-nav li {
        position: relative;
        width: 100%; 
    }

    /* İYİLEŞTİRME: Alt menünün doğru konumlanması */
    .main-nav ul li .submenu {
        display: none;
        position: absolute;
        left: 85%;      /* DÜZELTME: Ana menünün tam sağına yerleştirir */
        top: 0;           /* DÜZELTME: Üst hizayı ana menü öğesiyle aynı yapar */
        flex-direction: column;
        width: 200px;     /* Genişlik artırıldı */
        background-color: #f9f9f9; /* Arka plan rengi hafifçe değiştirildi */
        box-shadow: 4px 4px 10px rgba(0,0,0,0.2); /* Gölge ayarlandı */
        padding: 0;
        border-left: 1px solid #ddd;
        z-index: 1002;    /* Ana menüden de üstte olsun */
    }
    
    .main-nav .has-submenu.show-submenu > .submenu {
        display: flex;
    }
    
    /* Mobilde hover ile açılmayı engelle (JavaScript kontrolü için) */
    .main-nav ul li:hover > .submenu {
        display: none;
    }

 

    /* ADIM 2: MOBİL İÇİN TIKLAMA EFEKTİ (SADECE 768px ve altı) */
    .has-submenu > a::after {
        transition: transform 0.5s ease; /* Okun yumuşakça dönmesini sağlar */
        display: inline-block; /* transform özelliğinin çalışması için gerekli */
    }
    
    .has-submenu:hover > a::after {
        transform: none; /* Mobilde hover efektini iptal et */
    }
    
    .has-submenu.show-submenu > a::after {
        transform: rotate(-90deg); /* Mobilde tıklandığında oku sağa döndürür */
  }
 
   .page--Rules .welcome-box {
     padding: 15px; 
    }



    .page--Rules .welcome-box h1 {
    font-size: 18px; /* Masaüstü: 30px */

    }

    .page--Rules .welcome-box h3 {
    font-size: 19px; /* Masaüstü: 22px */
  
    }

    .page--Rules .welcome-box p {
    font-size: 10px; 
    text-align: justify;
    }


   .page--Aim .welcome-box {
    font-size: 15px; 
    }

    .page--About .hero-content h2, .page--Aim .hero-content h2, .page--acomu .hero-content h2, .page--bilim .hero-content h2, .page--contac .hero-content h2, .page--importans .hero-content h2, .page--keynotes .hero-content h2, .page--organize .hero-content h2, .page--Rules .hero-content h2, .page--paper .hero-content h2, .page--program .hero-content h2, .page--Regis .hero-content h2, .page--venue .hero-content h2 { font-size: 33px; }
    .page--index .hero-content h1 { font-size: 13px; }
    .page--index .hero-content h2 { font-size: 20px; }
    .page--index .hero-content p { font-size: 12px; }
    
    .page--index .welcome-box  {padding: 15px;}
    .page--index .welcome-box  h3 {font-size: 17px; }
    .page--index .welcome-box h4 {font-size: 15px;}
    .page--index .welcome-box p {font-size: 16px;}


/* --- Logo Galerisi (Sadece Index) --- */
    .page--index .logo-gallery img {
    height: 50px;
    }   

    .page--Regis .welcome-box, .page--About .welcome-box, .page--acomu .welcome-box, .page--Aim .welcome-box, .page--bilim .welcome-box, .page--contac .welcome-box, .page--importans .welcome-box, .page--keynotes .welcome-box, .page--organize .welcome-box, .page--paper .welcome-box, .page--acomu .welcome-box,  .page--Rules .welcome-box {padding: 5px;}
    .page--venue .welcome-box {padding: 0px;}

    
    .page--About .welcome-box p {
        font-size: 16px;
    }

       
    .page--venue .welcome-box  {padding: 0px;}
    .page--acomu .welcome-box  {padding: 9px;}
 

    /* --- Mobil Footer (Sayfaya Özel) --- */
    .page--About .main-footer, .page--Aim .main-footer, .page--acomu .main-footer, .page--bilim .main-footer, .page--contac .main-footer, .page--importans .main-footer, .page--keynotes .main-footer, .page--organize .main-footer, .page--Rules .main-footer,  .page--paper .main-footer, .page--program .main-footer, .page--Regis .main-footer, .page--venue .main-footer { height: auto; padding: 5px; }
    .page--About .main-footer p, .page--Aim .main-footer p, .page--acomu .main-footer p, .page--bilim .main-footer p, .page--contac .main-footer p, .page--importans .main-footer p, .page--keynotes .main-footer p, .page--organize .main-footer p, .page--paper .main-footer p, .page--Rules .main-footer p,  .page--Rules .main-footer p, .page--program .main-footer p, .page--Regis .main-footer p, .page--venue .main-footer p { text-align: center; padding: 0px; }
    .page--About .main-footer p:nth-child(1), .page--Aim .main-footer p:nth-child(1), .page--acomu .main-footer p:nth-child(1), .page--bilim .main-footer p:nth-child(1), .page--contac .main-footer p:nth-child(1), .page--importans .main-footer p:nth-child(1), .page--keynotes .main-footer p:nth-child(1), .page--organize .main-footer p:nth-child(1), .page--paper .main-footer p:nth-child(1), .page--program .main-footer p:nth-child(1), .page--Regis .main-footer p:nth-child(1), .page--venue .main-footer p:nth-child(1), .page--Rules .main-footer p:nth-child(1) { font-size: 15px; margin-top: 10px; text-align: center; }
    .page--About .main-footer p:nth-child(2), .page--Aim .main-footer p:nth-child(2), .page--acomu .main-footer p:nth-child(2), .page--bilim .main-footer p:nth-child(2), .page--contac .main-footer p:nth-child(2), .page--importans .main-footer p:nth-child(2), .page--keynotes .main-footer p:nth-child(2), .page--organize .main-footer p:nth-child(2), .page--paper .main-footer p:nth-child(2), .page--program .main-footer p:nth-child(2), .page--Regis .main-footer p:nth-child(2), .page--venue .main-footer p:nth-child(2), .page--Rules .main-footer p:nth-child(2) { font-size: 14px; margin-top: 5px; text-align: center; }
    .page--About .main-footer p:nth-child(3), .page--Aim .main-footer p:nth-child(3), .page--acomu .main-footer p:nth-child(3), .page--bilim .main-footer p:nth-child(3), .page--contac .main-footer p:nth-child(3), .page--importans .main-footer p:nth-child(3), .page--keynotes .main-footer p:nth-child(3), .page--organize .main-footer p:nth-child(3), .page--paper .main-footer p:nth-child(3), .page--program .main-footer p:nth-child(3), .page--Regis .main-footer p:nth-child(3), .page--venue .main-footer p:nth-child(3), .page--Rules .main-footer p:nth-child(3) { font-size: 13px; margin-top: 20px; padding: 34px; text-align: center; }
    .page--index .main-footer { height: auto; padding: 20px; }
    .page--index .main-footer p { text-align: center; padding: 0; }
    .page--index .main-footer p:nth-child(1) { font-size: 15px; }
    .page--index .main-footer p:nth-child(2) { font-size: 14px; }
    .page--index .main-footer p:nth-child(3) { font-size: 13px; margin-top: 15px; text-align: center; }

    /* --- Sayfaya Özel Diğer Mobil Stiller --- */
    .page--bilim .table-container { overflow-x: auto; padding-bottom: 1px; }
    .page--bilim .scientific-committee-table { min-width: 500px; width: 100%; }
    .page--bilim .committee-row .cell { font-size: 12px; }
    .page--bilim .committee-header .header-cell { font-size: 15px; }
    .page--importans .schedule-list { max-width: 100%; }
    .page--importans .schedule-item { padding: 10px 0px; border-radius: 0px; }
    .page--importans .schedule-title { font-size: 1em; }
    .page--importans .schedule-date { font-size: 0.9em; }
   
    .page--organize .photo-row {
        display: flex;
        flex-wrap: wrap;       /* Elemanların alt satıra kaymasını sağlar */
        justify-content: center; /* Elemanları satır içinde ortalar */
        
        /* ANA DÜZELTME 1: Satırlar ve sütunlar arasına net boşluklar ekliyoruz */
        gap: 60px 20px;        /* Dikeyde 40px, Yatayda 20px boşluk */
    }

    .page--organize .photo-item {
        /* ANA DÜZELTME 2: Genişliği, yatay boşluğu hesaba katarak ayarlıyoruz */
        /* Formül: 2 sütunlu düzen için %50 genişlik - (yatay boşluğun yarısı) */
        flex-basis: calc(50% - 10px);

        /* İçeriğin (resim + metin) daha düzgün hizalanması için ek ayarlar */
        display: flex;
        flex-direction: column; /* Resmi üste, metni alta alır */
        align-items: center;    /* İçeriği dikey eksende ortalar */
    }
    

    .page--organize .welcome-box {
        padding-top: 30px;
    }
    .page--organize .photo-item img.photo {
        width: 120px;
        height: 120px;
        margin-bottom: 10px; /* Resim ile metin arasına boşluk */
    }
    
    /* İyileştirme: Metinlerin her zaman ortalandığından ve küçüldüğünden emin olalım */
    .page--organize .person-name {
        font-size: 15px;
        text-align: center;
    }
    .page--organize .person-title {
        font-size: 13px;
        text-align: center;
    }

    
    .page--venue .venue-section h1.lead, .page--venue .venue-section h2, .page--venue .venue-section h3, .page--venue .venue-section ol.lead, .page--venue .venue-section ul, .page--venue .venue-section li, .page--venue .venue-section p { font-size: 1rem; }


/* --- Üst Bilgi Şeridi (Top Bar) Mobil Ayarları - YAN YANA VERSİYON --- */
.top-bar {
    padding: 5px 0; /* Şeridin dikey yüksekliğini azaltarak yer kazanıyoruz */
}

.top-bar .container {
    /* flex-direction: column; BU KURALI KULLANMIYORUZ, YAN YANA KALACAK */
    gap: 20px; /* Sol ve sağdaki gruplar birbirine çok yaklaşırsa aralarında minimum boşluk bırakır */
}

.top-bar .contact-info {
    font-size: 13px; /* Yazı boyutunu okunabilir en küçük seviyelerden birine indiriyoruz */
    white-space: nowrap; /* Metinlerin alt satıra kaymasını ve düzeni bozmasını engeller */
    /* Gerekirse daha fazla yer kazanmak için: display: none; */
}

.top-bar .contact-info a {
    margin-right: 5x; /* Linkler arasındaki boşluğu azaltıyoruz */
}

.top-bar .contact-info span {
    margin: 0 4px; /* Ayıraç (|) etrafındaki boşluğu azaltıyoruz */
}

.top-bar .social-links {
    gap: 15px; /* Sosyal medya ikonları arasındaki boşluğu ciddi oranda azaltıyoruz */
}

.top-bar .social-links a {
    font-size: 16px; /* Sosyal medya ikonlarını bir tık küçültüyoruz */
    margin-left: 0;  /* Eski koddan kalan fazladan boşluğu sıfırlıyoruz */
}


.has-submenu > a::after {
  font-family: "Font Awesome 6 Free"; /* important */
  font-weight: 900;                   /* solid style */
  content: "\f107";                   /* fa-chevron-down */
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.has-submenu.show-submenu > a::after { transform: rotate(-90deg); }




    /* Genel Paragraflar ve Lead Metni */
    .page--acomu .acumo-section p,
    .page--acomu .acumo-section .lead {
        font-size: 1.1rem;    /* Masaüstü: ~1.2rem - Okunabilirlik için standart metin boyutuna çekiyoruz */
        text-align: justify;   /* Mobilde 'justify' yerine 'sola yaslı' metin daha okunaklıdır */
        line-height: 1.6;

    }



    /* Liste Elemanları (li) */
    .page--acomu .acumo-section ul li {
        display: block;     /* TAŞMA SORUNUNU ÖNLER: Flexbox'ı iptal edip metnin alta kaymasını sağlıyoruz */
        font-size: 1rem;    /* Masaüstü: 1.2rem - Paragraflarla aynı boyuta getiriyoruz */
        margin-bottom: 8px; /* Liste elemanları arasına biraz boşluk ekliyoruz */
        text-align: left;
    }


 /* Ayırıcı Çizgiler (hr) */
 .page--acomu .acumo-section hr {
    margin: 5rem 2; /* Dikey boşlukları azaltarak daha kompakt bir görünüm sağlar */
}

/* Ana Başlık (h2) */
.page--acomu .acumo-section h2.mb-2 {
    font-size: 1.3rem;   /* Masaüstü: 1.5rem - Başlığı mobilde daha okunaklı bir boyuta getirir */
    text-align: left;  /* Başlığın ortalanması mobilde daha iyi bir odak noktası oluşturur */
    line-height: 1.7;
    padding-left: 30px;
    text-indent: -30px; 
}

/* Standart Paragraflar (İkonsuz olanlar) */
.page--acomu .acumo-section p:not(.icon-line) {
    font-size: 1rem;  /* Standart metin boyutu */
    text-align: justify;  /* Kısa bilgilendirme metinlerini ortalamak şık durabilir */
    padding: 0 10px;     /* Kenarlardan hafif boşluk bırakır */
}



/* İkonlu Satırlar İçin Özel Hizalama */
.page--acomu .acumo-section .icon-line {
    font-size: 0.95rem; /* Diğer paragraflarla aynı metin boyutu */
    line-height: 1.6;
    padding-left: 2.2em; /* 1. Adım: Metin bloğu için solda boşluk oluştur */
    text-indent: -2.9em; /* 2. Adım: İkonu/emojiyi bu boşluğa geri çekerek metinleri hizala */
    text-align: right;    /* Hizalamanın doğru çalışması için metni sola yasla */
}

/* Link İçeren Satırlar */
.page--acomu .acumo-section .icon-line a {
    font-weight: 600;      /* Linklerin daha belirgin olmasını sağlar */
   
}

/* Son Uyarı Satırı */
.page--acomu .acumo-section p.info-line {
    font-style: italic; /* Metni italik yaparak vurgular */
    opacity: 0.9;      /* Hafifçe soluklaştırarak diğerlerinden ayırır */
    font-size: 0.9rem;
    margin-top: 1rem;
}


}