body {
    font-family: 'Mulish', sans-serif;
    color: #333;
}

.about-page-layout {
    width: calc(100% - 64px);
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

/* Banner: style.css — container ortada, başlık solda (içerikle aynı hiza) */

@media (min-width: 1200px) {
    .banner-wrapper .about-banner .custom-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.about-content {
    padding: 0 80px;
}


.section-subtitle {
    font-family: Mulish;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 36px;
    color: #1F1F1F;
}

.section-title {
    font-family: Mulish;
    font-weight: 900;
    font-style: Black;
    font-size: 40px;
    color: #1F1F1F;
}

.section-description {
    font-family: Mulish;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    color: #555;
}

.section-description span {
    font-family: Mulish;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    color: #4C4C4C;
}

.content-text p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.content-text h6 {
    font-weight: 700;
    color: #222;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.video-box {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
    cursor: pointer;
    aspect-ratio: 16 / 7;
}

.video-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    opacity: 1;
    transition: none;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transition: transform 0.3s ease;
}

.video-box:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn i {
    color: #e50000;
    font-size: 30px;
    margin-left: 5px;
}

#inlineVideoIframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
    z-index: 3;
}

.stat-box {
    background-color: #f7f7f7;
    padding: 40px 20px;
    text-align: center;
    border-radius: 6px;
    height: 100%;
    transition: transform 0.3s;
}

.stat-number {
    font-family: Mulish;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 48px;
}

.stat-text {
    font-family: Mulish;
    font-weight: 400;
    font-style: Regular;
    font-size: 22px;
    color: #555555;
}

.mission-vision-box {
    padding: 20px 0;
}

.mv-subtitle {
    font-family: Mulish;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 36px;
    color: #1F1F1F;
}

.mv-title {
    font-family: Mulish;
    font-weight: 900;
    font-style: Black;
    font-size: 40px;
    color: #1F1F1F;
}

.mv-desc {
    font-family: Mulish;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    color: #4C4C4C;
}

.history-section {
    margin-top: 80px !important;
    align-items: center;
    display: flex;
    justify-content: space-between;
    text-align: start;
    align-items: self-start;
}

.history-img {
    border-radius: 6px;
    width: 100%;
    object-fit: cover;
}

.history-content {
    padding-left: 80px;
}

@media (max-width: 422px) {
    .about-page-layout {
        width: calc(100% - 24px);
    }
    .about-content {
        padding: 0 12px;
    }
    .about-banner {
        height: 240px;
        margin-bottom: 24px;
    }
    .about-banner .custom-container {
        padding: 0 20px;
    }
    .section-title {
        font-size: 32px;
    }
    .footer {
        margin-top: 80px !important;
    }
}