.about-section {
    padding-top: 350px;
    padding-bottom: 350px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: #f8f9fa;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
    /* mobil uyum için */
}

.about-image img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    min-width: 280px;
    max-width: 600px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.about-text h2 {
    margin-bottom: 20px;
    font-size: 40px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
}