.about-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 10%;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h1 {
    font-size: 48px;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-images {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-images img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.about-images iframe {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}


@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text h1 {
        font-size: 36px;
    }

    .about-text p {
        font-size: 16px;
    }
}
