.apropos-container {
    padding: 30px 5%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.apropos-main {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 70vh;
    justify-content: center;
}

.apropos-content-wrapper {
    max-width: 1000px;
    width: 100%;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.apropos-flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 50px;
    width: 100%;
}

.apropos-text {
    flex: 1;
    min-width: 300px;
}

.apropos-text h2 {
    margin-bottom: 30px;
    text-align: left;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #fff 0%, #666 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.apropos-text p {
    color: #ccc;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 25px;
}

.apropos-photo {
    flex-shrink: 0;
    text-align: center;
    margin: 0 auto;
    padding-left: 50px;
}

.apropos-photo img {
    display: block;
    width: 300px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 20px 25px rgba(255,255,255,0.4));
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent), linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent), linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    mask-composite: intersect;
}

.apropos-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

@media (max-width: 768px) {
    .apropos-flex-row {
        flex-direction: column;
        text-align: center;
    }
    .apropos-text h2 {
        text-align: center;
    }
    .apropos-photo {
        padding-left: 0;
        margin-top: 30px;
    }
}
