/* specific styles for kurumsal and about pages */

/* Banners */
.page-banner {
    position: relative;
    height: 300px;
    /* Short banner */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    margin-bottom: 50px;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 50, 90, 0.4);
    /* Blue overlay */
    z-index: 1;
}

.page-banner-dark::after {
    background: rgba(0, 0, 0, 0.7);
    /* Darker overlay */
}

.page-banner h1 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Text Blocks */
.content-block {
    max-width: 900px;
    margin: 0 auto 60px auto;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

.content-block p {
    margin-bottom: 20px;
}

.content-block h3 {
    color: var(--primary-blue);
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 500;
}

.content-block ul {
    list-style-type: none;
    margin-bottom: 20px;
}

.content-block ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.content-block ul li::before {
    content: '•';
    color: var(--primary-blue);
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 0;
}