/*
 * 50 Page - About Us Page Override Stylesheet
 * Active page ID: 5890, URL: /about-us/
 */

/* ── Hero / Page Header Section ── */
.dmax-about-hero {
    background: linear-gradient(135deg, var(--dmax-blue) 0%, var(--dmax-navy) 100%) !important;
    text-align: center;
    /* padding-top: clamp(60px, 8vw, 90px) !important; */
    /* padding-bottom: clamp(60px, 8vw, 90px) !important; */
}

.dmax-about-hero h1 {
    font-size: clamp(34px, 4.5vw, 48px);
    font-weight: 800;
    color: #ffffff !important;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

/* ── Intro Section ── */
.dmax-about-intro {
    background-color: #ffffff;
}

.dmax-about-intro .dmax-media img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(8, 38, 60, 0.08), 0 1px 3px rgba(8, 38, 60, 0.03);
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

@media (pointer: fine) {
    .dmax-about-intro .dmax-media img:hover {
        transform: translateY(-2px);
    }
}

.dmax-about-intro p {
    font-size: clamp(16px, 1.2vw, 19px);
    line-height: 1.6;
    color: var(--dmax-ink);
}

/* ── History & Standards Section ── */
.dmax-about-history {
    background-color: var(--dmax-soft); /* Soft grey/blue background for section differentiation */
    background: linear-gradient(to bottom, #ffffff 0%, #f4f7fb 10px);
}

.dmax-about-history h2 {
    color: var(--global-palette1) !important; /* Brand DentiMax Blue */
    margin-top: 48px !important;
    /* margin-bottom: 20px !important; */
    font-weight: 700 !important;
}

.dmax-about-history h2:first-of-type {
    margin-top: 0;
}

.dmax-about-history p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--dmax-ink);
}

.dmax-about-history p a {
    color: var(--global-palette1);
    font-weight: 600;
}

