/* ========================================
   PAGE‐SPECIFIC STYLES – DespreNoi
   ======================================== */

   .about-section {
    padding: 80px 20px;
    background: transparent;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1 1 400px;
    color: var(--light-grey);
}

.about-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about-image {
    flex: 1 1 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-heavy);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    .about-image, .about-text {
        flex: 1 1 100%;
    }
    .about-text h1 {
        font-size: 2.2rem;
    }
}
