/* 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;
}

/* Text Content Area */
.text-content {
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

/* Styled List for Principles */
.principles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.principle-item {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: flex-start;
}

.principle-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.08);
    border-left: 4px solid #1e3c72;
}

.principle-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #41e2ad;
    /* Accent color */
    opacity: 0.8;
    line-height: 1;
    min-width: 40px;
}

.principle-item p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #444;
}


/* 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;
    }

    .principle-item {
        padding: 20px;
        gap: 15px;
    }

    .principle-number {
        font-size: 1.3rem;
    }

    .principle-item p {
        font-size: 1rem;
    }
}

/* License Requirements Cards */
.license-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.license-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.1);
    border-top: 4px solid #41e2ad;
}

.license-title {
    color: #1e3c72;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.license-title i {
    color: #41e2ad;
    margin-right: 12px;
    font-size: 1.2em;
}

.req-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.req-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #444;
    transition: color 0.2s ease;
}

.req-list li:hover {
    color: #000;
}

.req-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #41e2ad;
    font-size: 14px;
}