.about-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

.about-text {
    flex: 1;
}

.about-main-text h2 {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-main-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}
.stat-item {
    text-align: center;
    position: relative;
}

.stat-item h3 {
    font-size: 3rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block; /* EKLENDİ */
    padding-right: 30px; /* EKLENDİ */
}

/* + İŞARETİ */
.stat-item h3::after {
    content: '+';
    position: absolute;
    top: 0;
    right: 0;
    font-size: 2rem;
    color: #ec0505;
    line-height: 1; /* EKLENDİ */
}

.stat-item p {
    font-size: 1rem;
    color: #030304;
    font-weight: 500;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .about-main-text h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    /* Mobil için + işareti ayarı */
    .stat-item h3::after {
        font-size: 1.5rem;
        right: -15px;
    }
}