/* ======================================= */
/* HAKKIMIZDA SAYFASI STİLLERİ             */
/* ======================================= */

/* Ana Kapsayıcı: Sayfa Düzeni */
.about-us-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px; 
    font-family: 'Inter', sans-serif;
    color: #333;
    flex-wrap: wrap; 
}

/* --- SOL YAN MENÜ (SIDEBAR) STİLLERİ --- */
.about-us-sidebar {
    flex: 0 0 360px; 
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 20px;
    height: fit-content; 
    border: 1px solid #e5e7eb;
}

.about-us-sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3f609e; 
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
}

.about-us-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-us-sidebar-list li {
    margin-bottom: 8px;
}

.about-us-sidebar-list li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    background-color: #f9fafb;
    border-left: 3px solid transparent; 
}

/* Hover Durumu */
.about-us-sidebar-list li a:hover {
    background-color: #eef2ff;
    color: #3f609e;
    padding-left: 20px; 
}

/* Aktif Sayfa Durumu */
.about-us-sidebar-list li.active a {
    background-color: #3f609e;
    color: #fff;
    border-left-color: #2c4575;
}


/* --- SAĞ ANA İÇERİK STİLLERİ --- */
.about-us-main-content {
    flex: 1; 
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.about-us-page-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 25px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 15px;
    line-height: 1.3;
}

.about-us-text-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
    color: #4b5563;
}

.about-us-text-content .about-us-highlight {
    font-weight: 700;
    color: #3f609e;
    font-size: 1.1rem;
}

.about-us-image-wrapper {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.about-us-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- YÖNETİM KURULU LİSTESİ STİLLERİ --- */
.about-us-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin: 40px 0 20px 0;
    padding-left: 10px;
    border-left: 5px solid #3f609e;
}

.about-us-board-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 15px;
}

.about-us-board-list li {
    background-color: #f9fafb;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-us-board-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-color: #e5e7eb;
}

.about-us-member-name {
    font-weight: 700;
    color: #111827;
    font-size: 1.05rem;
}

.about-us-member-company {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 4px;
    font-style: italic;
}

/* ======================================= */
/* MİSYON VE VİZYON SAYFASI STİLLERİ       */
/* ======================================= */

/* Ana Kapsayıcı: Sayfa Düzeni */
.mission-vision-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px; 
    font-family: 'Inter', sans-serif;
    color: #333;
    flex-wrap: wrap; 
}

/* --- SOL YAN MENÜ (SIDEBAR) STİLLERİ --- */
.mission-vision-sidebar {
    flex: 0 0 360px; 
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 20px;
    height: fit-content; 
    border: 1px solid #e5e7eb;
}

.mission-vision-sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3f609e; 
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
}

.mission-vision-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-vision-sidebar-list li {
    margin-bottom: 8px;
}

.mission-vision-sidebar-list li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    background-color: #f9fafb;
    border-left: 3px solid transparent; 
}

/* Hover Durumu */
.mission-vision-sidebar-list li a:hover {
    background-color: #eef2ff;
    color: #3f609e;
    padding-left: 20px; 
}

/* Aktif Sayfa Durumu */
.mission-vision-sidebar-list li.active a {
    background-color: #3f609e;
    color: #fff;
    border-left-color: #2c4575;
}


/* --- SAĞ ANA İÇERİK STİLLERİ --- */
.mission-vision-main-content {
    flex: 1; 
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.mission-vision-page-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 25px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 15px;
    line-height: 1.3;
}

.mission-vision-text-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
    color: #4b5563;
}

.mission-vision-text-content .mission-vision-highlight {
    font-weight: 700;
    color: #3f609e;
    font-size: 1.1rem;
}

.mission-vision-image-wrapper {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.mission-vision-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Başlıklar için küçük bir düzenleme */
.mission-vision-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin: 30px 0 15px 0; 
    padding-left: 10px;
    border-left: 5px solid #3f609e;
}


/* ======================================= */
/* FAALİYETLER SAYFASI STİLLERİ            */
/* ======================================= */

/* Ana Kapsayıcı: Sayfa Düzeni */
.faaliyetler-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px; 
    font-family: 'Inter', sans-serif;
    color: #333;
    flex-wrap: wrap; 
}

/* --- SOL YAN MENÜ (SIDEBAR) STİLLERİ (Misyon/Vizyon'dan uyarlandı) --- */
.faaliyetler-sidebar {
    flex: 0 0 360px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 20px;
    height: fit-content; 
    border: 1px solid #e5e7eb;
}

.faaliyetler-sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3f609e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
}

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

.faaliyetler-sidebar-list li {
    margin-bottom: 8px;
}

.faaliyetler-sidebar-list li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    background-color: #f9fafb;
    border-left: 3px solid transparent; 
}

.faaliyetler-sidebar-list li a:hover {
    background-color: #eef2ff;
    color: #3f609e;
    padding-left: 20px; 
}

.faaliyetler-sidebar-list li.active a {
    background-color: #3f609e;
    color: #fff;
    border-left-color: #2c4575;
}


/* --- SAĞ ANA İÇERİK STİLLERİ --- */
.faaliyetler-main-content {
    flex: 1; 
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.faaliyetler-page-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 15px;
    line-height: 1.3;
}

/* Faaliyet Kartları Kapsayıcısı */
.faaliyetler-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px;
}

/* Faaliyet Kartı Stili */
.faaliyetler-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eef2ff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faaliyetler-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: #3f609e;
}

.faaliyetler-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3f609e;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

/* Başlık öncesi simge/stil */
.faaliyetler-card-title::before {
    content: "•"; 
    color: #6377e0;
    font-size: 1.8rem;
    position: absolute;
    left: 0;
    top: -5px;
    line-height: 1;
}

.faaliyetler-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}



/* ======================================= */
/* TÜZÜK SAYFASI STİLLERİ                  */
/* ======================================= */

/* Ana Kapsayıcı: Sayfa Düzeni */
.tuzuk-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px; 
    font-family: 'Inter', sans-serif;
    color: #333;
    flex-wrap: wrap; 
}

/* --- SOL YAN MENÜ (SIDEBAR) STİLLERİ --- */
.tuzuk-sidebar {
    flex: 0 0 360px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 20px;
    height: fit-content; 
    border: 1px solid #e5e7eb;
}

.tuzuk-sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3f609e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
}

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

.tuzuk-sidebar-list li {
    margin-bottom: 8px;
}

.tuzuk-sidebar-list li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    background-color: #f9fafb;
    border-left: 3px solid transparent; 
}

.tuzuk-sidebar-list li a:hover {
    background-color: #eef2ff;
    color: #3f609e;
    padding-left: 20px; 
}

.tuzuk-sidebar-list li.active a {
    background-color: #3f609e;
    color: #fff;
    border-left-color: #2c4575;
}


/* --- SAĞ ANA İÇERİK STİLLERİ --- */
.tuzuk-main-content {
    flex: 1; 
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.tuzuk-page-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 15px;
    line-height: 1.3;
}

.tuzuk-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin: 30px 0 15px 0;
    padding-left: 10px;
    border-left: 5px solid #3f609e;
}

.tuzuk-text-section p {
    line-height: 1.6;
    color: #4b5563;
}

/* --- ANA GÖRSEL STİLİ --- */
.tuzuk-full-image-wrapper {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.tuzuk-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Hover Efekti */
.tuzuk-full-image-wrapper:hover .tuzuk-main-image {
    transform: scale(1.02);
}

.tuzuk-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(63, 96, 158, 0.6); 
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tuzuk-full-image-wrapper:hover .tuzuk-overlay {
    opacity: 1;
}

.tuzuk-image-caption {
    font-style: italic;
    text-align: center;
    color: #6b7280;
    margin-bottom: 40px;
    font-size: 0.95rem;
}


/* --- MODAL PENCERE STİLLERİ --- */
.tuzuk-modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgba(0,0,0,0.9); 
    align-items: center; 
    justify-content: center; 
}

/* Modal İçindeki Görsel */
.tuzuk-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
    animation-name: zoom;
    animation-duration: 0.6s;
}

/* Kapatma Düğmesi */
.tuzuk-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.tuzuk-modal-close:hover,
.tuzuk-modal-close:focus {
    color: #bbb;
    text-decoration: none;
}

/* Görsel Açıklaması */
.tuzuk-modal-caption {
    margin: 15px auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px; 
}

/* ======================================= */
/* YÖNETİM KURULU SAYFASI STİLLERİ         */
/* ======================================= */

/* Ana Kapsayıcı: Sayfa Düzeni */
.yonetim-kurulu-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px; 
    font-family: 'Inter', sans-serif;
    color: #333;
    flex-wrap: wrap; 
}

/* --- SOL YAN MENÜ (SIDEBAR) STİLLERİ --- */
.yonetim-kurulu-sidebar {
    flex: 0 0 360px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 20px;
    height: fit-content; 
    border: 1px solid #e5e7eb;
}

.yonetim-kurulu-sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3f609e;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
}

.yonetim-kurulu-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.yonetim-kurulu-sidebar-list li {
    margin-bottom: 8px;
}

.yonetim-kurulu-sidebar-list li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    background-color: #f9fafb;
    border-left: 3px solid transparent; 
}

.yonetim-kurulu-sidebar-list li a:hover {
    background-color: #eef2ff;
    color: #3f609e;
    padding-left: 20px; 
}

.yonetim-kurulu-sidebar-list li.active a {
    background-color: #3f609e;
    color: #fff;
    border-left-color: #2c4575;
}


/* --- SAĞ ANA İÇERİK STİLLERİ --- */
.yonetim-kurulu-main-content {
    flex: 1; 
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.yonetim-kurulu-page-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 15px;
    line-height: 1.3;
}

.yonetim-kurulu-intro-text {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.6;
}

.yonetim-kurulu-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #3f609e;
    margin: 30px 0 20px 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #f3f4f6;
}

/* --- YÖNETİM KURULU KARTLARI --- */
.yonetim-kurulu-cards-wrapper {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

/* Sütun Düzenleri */
.yonetim-kurulu-cards-wrapper.--single-column {
    grid-template-columns: 1fr;
}

.yonetim-kurulu-cards-wrapper.--two-columns {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.yonetim-kurulu-cards-wrapper.--three-columns {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Üye Kartı Stili */
.yonetim-kurulu-card {
    display: flex;
    align-items: center;
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 5px solid #3f609e; 
    transition: all 0.3s ease;
}

.yonetim-kurulu-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background-color: #fff;
}

/* Başkan Kartı Özel Rengi */
.yonetim-kurulu-card.--president {
    border-left-color: #2c4575;
    background-color: #eef2ff;
}

/* Başkan Vekili Kartı Özel Rengi */
.yonetim-kurulu-card.--vice {
    border-left-color: #7c3aed; 
    background-color: #f5f3ff;
}

/* Üye Kartı Özel Rengi */
.yonetim-kurulu-card.--member {
    border-left-color: #10b981; 
    background-color: #ecfdf5;
    flex-direction: column; 
    text-align: center;
    padding: 25px 15px;
}

.yonetim-kurulu-member-photo {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid #3f609e;
}

.yonetim-kurulu-card.--member .yonetim-kurulu-member-photo {
    width: 100px;
    height: 100px;
    margin: 0 0 15px 0;
}


.yonetim-kurulu-member-info {
    flex: 1;
}

.yonetim-kurulu-member-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 5px;
}

.yonetim-kurulu-member-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3f609e;
    margin-bottom: 5px;
}

.yonetim-kurulu-member-company {
    font-size: 0.85rem;
    color: #6b7280;
}

/* ======================================= */
/* SSS SAYFASI STİLLERİ         */
/* ======================================= */

/* Ana Kapsayıcı: Sayfa Düzeni */
.sss-ic-sayfa-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    gap: 40px; 
    font-family: 'Inter', sans-serif;
    color: #333;
    flex-wrap: wrap; 
}

/* --- SOL YAN MENÜ (SIDEBAR) STİLLERİ --- */
.sss-ic-sayfa-sidebar {
    flex: 0 0 360px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 20px;
    height: fit-content; 
    border: 1px solid #e5e7eb;
}

.sss-ic-sayfa-sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
}

.sss-ic-sayfa-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sss-ic-sayfa-sidebar-list li {
    margin-bottom: 8px;
}

.sss-ic-sayfa-sidebar-list li a {
    display: block;
    padding: 12px 15px;
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s ease;
    background-color: #f9fafb;
    border-left: 3px solid transparent; 
}

.sss-ic-sayfa-sidebar-list li a:hover {
    background-color: #eef2ff;
    color: var(--primary-color);
    padding-left: 20px; 
}

.sss-ic-sayfa-sidebar-list li.active a {
    background-color: var(--primary-color);
    color: #fff;
    border-left-color: #2c4575;
}


/* --- SAĞ ANA İÇERİK STİLLERİ --- */
.sss-ic-sayfa-main-content {
    flex: 1; 
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

/* Ana Başlık Stilleri (Yönetim Kurulu Başlık stiline uyum) */
.sss-ic-sayfa-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 15px;
    line-height: 1.3;
}

/* Soru-Cevap Kutusu Stili (Yönetim Kurulu Kart Stillerine uyum) */
.sss-ic-sayfa-qa-item {
    margin-bottom: 20px; 
    padding: 20px;
    border-radius: 8px;
    background-color: #f9fafb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    border-left: 5px solid var(--primary-color); 
    transition: all 0.3s ease;
}

.sss-ic-sayfa-qa-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background-color: #fff;
}

.sss-ic-sayfa-question {
    font-size: 1.1rem; 
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.sss-ic-sayfa-answer p {
    font-size: 0.95rem; 
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 0;
}




/* ======================================= */
/* ÜYELİK KOŞULLARI        */
/* ======================================= */
.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.evrak-belge-dokuman {
    padding: 50px 0 80px;
    text-align: center;
}

.evrak-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-top: 50px;
    align-items: stretch;
    justify-content: center; 
}

.belge-card {
    background-color: #ffffff;
    border-radius: var(--border-radius-lg, 12px);
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.belge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.belge-card i {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
}

.belge-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark, #2d3748);
    min-height: 50px; 
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0 0 15px;
}

.belge-card p {
    font-size: 14px;
    color: #718096;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-evrak {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    text-transform: uppercase;
}

.btn-primary-evrak {
    background-color: var(--primary-color, #4a69bd);
    color: var(--text-light, #ffffff);
    box-shadow: 0 4px 8px rgba(74, 105, 189, 0.4);
}

.btn-primary-evrak:hover {
     background-color: var(--primary-color, #4a69bd);
    color: var(--text-light, #ffffff);
    box-shadow: 0 4px 8px rgba(74, 105, 189, 0.4);
}

.btn-secondary-evrak {
    background-color: var(--primary-color, #4a69bd);
    color: var(--text-light, #ffffff);
    box-shadow: 0 4px 8px rgba(74, 105, 189, 0.4);
}

.btn-secondary-evrak:hover {
     background-color: var(--primary-color, #4a69bd);
    color: var(--text-light, #ffffff);
    box-shadow: 0 4px 8px rgba(74, 105, 189, 0.4);
}

/* Reveal temel stilleri (Eğer önceki sayfada eklediyseniz tekrar etmenize gerek yok) */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}

/* Görünürlük sınıfı - .reveal-item ile bitişik olmalı */
.reveal-item.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Evrak Kartları için ardışık gecikmeler */
.evrak-grid .reveal-item:nth-child(1) { transition-delay: 0.1s; }
.evrak-grid .reveal-item:nth-child(2) { transition-delay: 0.2s; }
.evrak-grid .reveal-item:nth-child(3) { transition-delay: 0.3s; }
.evrak-grid .reveal-item:nth-child(4) { transition-delay: 0.4s; }
.evrak-grid .reveal-item:nth-child(5) { transition-delay: 0.5s; }

/* ======================================= */
/* EVRAK & BELGE SAYFASI RESPONSIVE        */
/* ======================================= */

@media (max-width: 1024px) {
    .evrak-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 sütun */
        gap: 20px;
        padding: 0 15px;
    }
    
    .section-heading {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .evrak-belge-dokuman {
        padding: 40px 0 60px;
    }

    .evrak-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        max-width: 450px; /* Kartların çok yayılmaması için */
        margin: 30px auto 0;
    }

    .belge-card {
        padding: 25px 20px;
    }

    .belge-card h3 {
        font-size: 18px;
        min-height: auto; /* Mobilde dikey hizalamayı serbest bırak */
        margin-bottom: 10px;
    }

    .belge-card p {
        margin-bottom: 20px;
    }

    .btn-evrak {
        width: 100%; /* Mobilde butonlar tam genişlik (başparmak dostu) */
        text-align: center;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 24px;
        padding: 0 10px;
    }

    .evrak-belge-dokuman p {
        font-size: 15px !important;
        margin-bottom: 30px !important;
        padding: 0 20px;
    }

    .belge-card i {
        font-size: 38px; /* İkonu biraz küçült */
    }
}

/* Dokunmatik ekranlarda hover efektini yumuşat veya kaldır */
@media (hover: none) {
    .belge-card:active {
        transform: scale(0.98); /* Tıklama anında hafif basılma hissi */
        transition: 0.1s;
    }
    
    .belge-card:hover {
        transform: none;
    }
}

/* =========================================
   DERNEĞİN AMACI ALANI STİLLERİ
   ========================================= */

.dernek-amaci-box {
    background-color: #f8faff; 
    border-left: 5px solid var(--primary-color, #4a69bd); 
    border-radius: 8px;
    padding: 30px 40px;
    margin: 0 auto 50px auto; 
    max-width: 1000px; 
    text-align: left; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.amac-baslik {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark, #2d3748);
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
    display: inline-block;
}

.amac-metin {
    font-size: 16px;
    line-height: 1.8; 
    color: #4a5568;
    margin: 0;
    text-align: justify; 
}





/* ÜYELİK KOŞULLARI İÇERİK BİTİŞ */
.uyelik-avantajlari {
    padding: 60px 0 100px;
    background-color: #f8f9fa; 
}

/* --- Başlık ve Giriş Alanı Stilleri --- */
.avantaj-ana-baslik {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.avantaj-ana-baslik::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 3px;
}

.avantaj-giris-metni {
    text-align: center;
    font-size: 18px;
    color: #5a677e;
    max-width: 900px;
    margin: 0 auto 15px;
}

.alt-metin {
    font-weight: 600;
    margin-bottom: 50px;
    color: var(--text-dark);
}

/* --- Avantaj Kartları Izgarası --- */
.avantaj-grid {
    display: grid;
    /* Masaüstü: 3 eşit sütun */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

/* --- Avantaj Kartı Temel Stili --- */
.avantaj-kart {
    background-color: var(--text-light);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 5px solid var(--primary-color);
    display: flex;
    flex-direction: column;
}

.avantaj-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.kart-baslik-alani {
    margin-bottom: 20px;
}

.avantaj-kart i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.avantaj-kart h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 10px;
    margin-bottom: 15px;
}

.avantaj-kart p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; 
}

/* Avantaj Listesi Stilleri */
.avantaj-liste {
    list-style: none;
    padding: 0;
    margin-top: auto; 
}

.avantaj-liste li {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.avantaj-liste li i {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 10px;
}

/* --- Call to Action (CTA) Alanı --- */
.avantaj-cta {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-baslik {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-metin {
    font-size: 17px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: var(--text-dark);
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
}

.cta-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    
}
.cta-button:hover i{
    color: white;
}

.cta-button i {
    margin-right: 8px;
    font-size: 16px;
    color: var(--text-dark);
}

/* Başlangıç durumu: Görünmez ve biraz aşağıda */
.avantaj-kart, .avantaj-ana-baslik, .avantaj-giris-metni, .avantaj-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Görünür durum: JS ile bu sınıf eklenecek */
.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Kartlar için özel gecikme (Stagger effect) */
.avantaj-grid .avantaj-kart:nth-child(1) { transition-delay: 0.1s; }
.avantaj-grid .avantaj-kart:nth-child(2) { transition-delay: 0.3s; }
.avantaj-grid .avantaj-kart:nth-child(3) { transition-delay: 0.5s; }


/* ========================================================================
   ÜYELİK AVANTAJLARI RESPONSIVE AYARLARI
   ======================================================================== */

@media (max-width: 1024px) {
    .avantaj-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablette 2 sütun */
        gap: 20px;
    }
    
    .avantaj-ana-baslik {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .uyelik-avantajlari {
        padding: 40px 0 60px;
    }

    .avantaj-ana-baslik {
        font-size: 26px;
        padding: 0 10px;
    }

    .avantaj-giris-metni {
        font-size: 16px;
        padding: 0 15px;
    }

    /* Kartları tek sütuna düşür */
    .avantaj-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .avantaj-kart {
        padding: 25px;
    }

    .avantaj-kart h2 {
        font-size: 20px;
    }

    /* CTA Alanı Düzenlemesi */
    .avantaj-cta {
        padding: 30px 20px;
        width: 90%;
    }

    .cta-baslik {
        font-size: 22px;
    }

    .cta-button {
        width: 100%; /* Mobilde butonu tam genişlik yap */
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .avantaj-ana-baslik {
        font-size: 22px;
    }

    .avantaj-kart i {
        font-size: 30px;
    }

    .avantaj-liste li {
        font-size: 14px;
    }
    
    /* Reveal animasyonlarının mobilde çok gecikmemesi için delay'leri sıfırlayabilirsin (opsiyonel) */
    .avantaj-grid .avantaj-kart:nth-child(n) { 
        transition-delay: 0.1s; 
    }
}

/* Dokunmatik cihazlar için hover efektini optimize et */
@media (hover: none) {
    .avantaj-kart:hover {
        transform: none;
        box-shadow: 0 10px 30px var(--shadow-light);
    }
}