/* Metin Optimizasyonları - Desktop ve Mobil */

/* About Text Paragrafları - Tutarlı Font Boyutu */
.about-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    text-align: justify;
    color: #333;
}

.about-text #first-paragraph {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

/* Masaüstü için normal renkler (mavi arkaplan yok) */
.about-image-text strong,
.about-image-text .highlight-text {
    color: inherit;
    font-weight: 700;
}

.about-image-text p {
    font-size: 1.6rem;
    line-height: 1.8;
}

.about-image-text h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* Desktop için ek optimizasyonlar */
@media screen and (min-width: 769px) {
    .about-text p {
        font-size: 1.7rem;
        line-height: 1.9;
    }

    .about-text #first-paragraph {
        font-size: 1.7rem;
        line-height: 1.9;
    }

    .about-image-text p {
        font-size: 1.7rem;
        line-height: 1.9;
    }

    .about-image-text h3 {
        font-size: 2.4rem;
    }
}

/* Tablet için */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .about-text p {
        font-size: 1.6rem;
        line-height: 1.8;
    }

    .about-text #first-paragraph {
        font-size: 1.6rem;
    }
}

/* Mobil için SEO optimal boyut - 16px minimum */
@media screen and (max-width: 768px) {
    .about-text p {
        font-size: 1.6rem !important;
        line-height: 1.8;
    }

    .about-text #first-paragraph {
        font-size: 1.6rem !important;
        line-height: 1.8;
    }

    /* Mobilde mavi arkaplan var - Sarı vurgu ve beyaz yazı */
    .about-image-text p {
        font-size: 1.6rem !important;
        color: rgba(255, 255, 255, 0.95);
    }

    .about-image-text h3 {
        color: #fff;
    }

    .about-image-text strong,
    .about-image-text .highlight-text {
        color: #FFC107;
        font-weight: 700;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
}

/* Küçük mobil cihazlar */
@media screen and (max-width: 576px) {

    .about-text p,
    .about-text #first-paragraph {
        font-size: 1.6rem !important;
        line-height: 1.7;
    }

    .about-image-text h3 {
        font-size: 2rem;
    }

    .about-image-text p {
        font-size: 1.5rem !important;
    }
}

/* Çok küçük ekranlar */
@media screen and (max-width: 375px) {

    .about-text p,
    .about-text #first-paragraph {
        font-size: 1.5rem !important;
        line-height: 1.7;
    }
}