/* Kurumsal Page Styles */
.about-us-modern {
    padding: 80px 0;
    background-color: #fff;
}

.about-us-modern .firm-label {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    font-weight: 700;
    color: #1a569d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-us-modern .firm-label::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #1a569d;
    margin-right: 15px;
}

.about-us-modern .about-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a569d; /* or #222 based on the screenshot, but the screenshot has it dark blue */
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-us-modern .about-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-us-modern .about-desc p {
    margin-bottom: 20px;
}

/* Custom list styling for checkmarks */
.about-us-modern .about-desc ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.about-us-modern .about-desc ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.about-us-modern .about-desc ul li::before {
    content: '\f058'; /* FontAwesome check-circle */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #79a8ff; /* Light blue color from screenshot */
    font-size: 20px;
}

.about-us-modern .about-desc,
.about-us-modern .about-desc * {
    font-family: inherit !important;
}

/* Images Section */
.about-images-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    object-fit: cover;
    min-height: 400px;
}

@media (max-width: 991px) {
    .about-images-wrapper {
        margin-top: 30px;
    }
    .about-img-main {
        min-height: auto;
    }
    .about-us-modern .about-title {
        font-size: 32px;
    }
}
