.about {
    padding: 50px 20px;
    background-color: #f9f9f9;
    margin-top: 100px; /* Varsayılan */
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.about-text {
    flex: 1 1 500px;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 3px solid #007BFF;
    display: inline-block;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 15px;
}

.about-image {
    flex: 1 1 400px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* 📱 Küçük ekranlı telefonlar */
@media (max-width: 480px) {
    .about {
        margin-top: 85px;
    }
}

/* 📱 Orta boy telefonlar */
@media (min-width: 481px) and (max-width: 768px) {
    .about {
        margin-top: 95px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-title {
        font-size: 2rem;
        margin-top: 0; /* Fazla boşluk oluşmasın */
    }

    .about-description {
        font-size: 1rem;
    }

    .about-text {
        order: 1;
    }

    .about-image {
        order: 2;
    }
}

/* 💻 Tablet ve büyük telefonlar */
@media (min-width: 769px) and (max-width: 1024px) {
    .about {
        margin-top: 105px;
    }
}

/* 🖥️ Büyük ekranlı cihazlar */
@media (min-width: 1025px) {
    .about {
        margin-top: 110px;
    }
}
