/* Genel stil */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

.contact-section.about-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    text-align: center;
}

.text-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ebf0df;
}

.text-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.image-section img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
}

.animate {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 2s forwards;
    animation-delay: var(--delay);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}






/* Mobil uyumluluk */
@media screen and (max-width: 768px) {
    .contact-section.about-page {
        padding: 20px;
    }

    .about-content {
        flex-direction: column;
        gap: 20px;
    }

    .text-section h2 {
        font-size: 20px;
    }

    .text-section p {
        font-size: 14px;
        line-height: 1.5;
    }

    .image-section img {
        width: 100%;
        height: auto;
    }
}
