.about-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Playfair Display', serif;
    color: #555;
}

.about-heading {
    font-size: 2.5rem;
    color: #74a277;
    margin-bottom: 20px;
    text-align: center;
}

.about {
    display: flex;
    flex-direction: row;
}

.about-photo img {
    height: 550px;
    margin-top: 25px;
    margin-left: 30px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-note {
    font-style: italic;
    color: #666;
}

.about-ps {
    color: #74a277;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 30px;
}

/* Mobilná optimalizácia */
@media (max-width: 600px) {
    .about-heading {
        font-size: 2rem;
    }
    .about {
        display: flex;
        flex-direction: column;
    }
    .about-photo img {
        height: auto;
        width: 350px;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-ps {
        font-size: 1.1rem;
    }
}
