:root {
    --maroon-main: #CE5959;
}

/* ============================================
   KRDDO FASHION - ABOUT US PAGE STYLES
   Professional layout matching site design tokens
   ============================================ */

.about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ---------- Hero Section ---------- */
.about-page {
    padding: 10px 0 0;
}

.about-hero {
    position: relative;
    background: linear-gradient(135deg, var(--deep-maroon) 0%, var(--main-maroon) 55%, var(--light-maroon) 100%);
    border-radius: 22px;
    padding: 70px 40px;
    text-align: center;
    overflow: hidden;
    margin-bottom: 60px;
    color: #fff;
}

.about-hero-title {
    font-size: 46px;
    font-weight: var(--weight-800);
}

.about-hero-title span {
    border-bottom: 4px solid rgba(255,255,255,0.6);
}

/* ---------- Legacy styles (kept for compatibility) ---------- */
#aboout-us-title {
    font-size: 48px;
}

#about-title {
    color: var(--maroon-main);
    text-transform: uppercase;
}

.about-us-text p {
    font-size: 24px;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: justify;
}

.about-us-section {
    width: 100%;
    padding: 15px;
    margin: 15px;
    display: flex;
    justify-content: space-between;
    justify-content: center;
    align-items: center;
}

.about-us-content {
    width: 100%;
    padding: 15px;
}

/* break points */
@media only screen and (min-width: 0px) and (max-width: 850px) {
    .about-us-section {
        width: 100%;
        flex-direction: column-reverse;
    }

    .about-us-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .about-us-content p {
        text-align: justify;
    }

    #aboout-us-title {
        font-size: 34px;
        text-align: center;
    }

    .about-us-image {
        width: 100%;
    }
}
