/* =========================================
   HAKKIMIZDA İÇERİĞİ
========================================= */

.about-content-section {
    width: 100%;
    padding: 70px 0;
    background-color: #ffffff;
}

.about-text {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-text h2 {
    margin-bottom: 22px;
    color: #1e3c72;
    font-size: clamp(2rem, 5vw, 2.7rem);
    line-height: 1.2;
    text-align: center;
}

.about-text p {
    margin-bottom: 18px;
    color: #555555;
    font-size: 1.08rem;
    line-height: 1.85;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* =========================================
   BÖLÜM BAŞLIĞI
========================================= */

.section-title {
    margin-bottom: 36px;
    color: #1e3c72;
    font-size: clamp(2rem, 5vw, 2.7rem);
    line-height: 1.2;
    text-align: center;
}

/* =========================================
   DEĞERLERİMİZ
========================================= */

.values {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.value-card {
    min-width: 0;
    padding: 34px 26px;
    text-align: center;
    background-color: #f4f6f8;
    border: 1px solid #e4e7eb;
    border-radius: 14px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.value-icon {
    margin-bottom: 16px;
    font-size: 3.2rem;
    line-height: 1;
}

.value-card h3 {
    margin-bottom: 14px;
    color: #1e3c72;
    font-size: 1.5rem;
    line-height: 1.3;
}

.value-card p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.7;
}

/* =========================================
   İSTATİSTİK BÖLÜMÜ
========================================= */

.stats {
    width: 100%;
    padding: 70px 0;
    color: #ffffff;
    text-align: center;
    background:
        linear-gradient(
            135deg,
            #1e3c72 0%,
            #2a5298 100%
        );
}

.stats-inner h2 {
    margin-bottom: 38px;
    color: #ffffff;
    font-size: clamp(2rem, 5vw, 2.7rem);
    line-height: 1.2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.stat-item {
    min-width: 0;
    padding: 28px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
}

.stat-item strong {
    display: block;
    margin-bottom: 8px;
    color: #ffd700;
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    line-height: 1.1;
}

.stat-item span {
    display: block;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 900px) {
    .values {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .value-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }
}

/* =========================================
   TELEFON
========================================= */

@media screen and (max-width: 768px) {
    .about-content-section {
        padding: 50px 0;
    }

    .about-text {
        margin-bottom: 45px;
    }

    .about-text h2 {
        margin-bottom: 20px;
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.75;
        text-align: left;
    }

    .section-title {
        margin-bottom: 28px;
        font-size: 2rem;
    }

    .values {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .value-card,
    .value-card:last-child {
        grid-column: auto;
        max-width: none;
        padding: 28px 20px;
    }

    .stats {
        padding: 50px 0;
    }

    .stats-inner h2 {
        margin-bottom: 28px;
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-item strong {
        font-size: 2.7rem;
    }
}

/* =========================================
   KÜÇÜK TELEFON
========================================= */

@media screen and (max-width: 480px) {
    .about-content-section {
        padding: 42px 0;
    }

    .about-text h2,
    .section-title,
    .stats-inner h2 {
        font-size: 1.8rem;
    }

    .value-icon {
        font-size: 2.8rem;
    }

    .value-card h3 {
        font-size: 1.35rem;
    }

    .stat-item span {
        font-size: 1rem;
    }
}