/* Main Layout Structure (Matches Tarihçe & Desktop Sidebar) */
.content-section {
    padding: 20px 0;
}

/* Page Title with Underline Effect */
.page-title {
    color: #1e3c72;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #41e2ad;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60%;
    height: 3px;
    background-color: #1e3c72;
}

/* Layout Configuration for Desktop (Replicated from Tarihçe) */
@media (min-width: 992px) {
    .fr-layout {
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    .fr-sidebar {
        width: 280px;
        flex-shrink: 0;
    }

    .content-section {
        flex: 1;
        min-width: 0;
        /* Prevent flex item from overflowing */
        padding-top: 0;
        /* Align with sidebar top */
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .fr-layout {
        display: block;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.75rem;
    }
}

/* Zabita Amirliği Specific Styles */
.zabita-content {
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

.manager-photo {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 0 auto 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.zabita-content h3 {
    margin-top: 0;
    color: #1e3c72;
    font-weight: 700;
    font-size: 1.4rem;
}

.zabita-content h4 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #222;
    font-size: 1.2rem;
}

.zabita-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.mission-section {
    margin-bottom: 30px;
}

.mission-section h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f8f9fa;
    border-left: 4px solid #41e2ad;
    border-radius: 4px;
}

.mission-section ol {
    padding-left: 20px;
}

.mission-section ol li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}