/* ============================================================
   CALM & CLEAN — ABOUT US PAGE
   Standalone / Responsive / Theme-Safe CSS
   ============================================================ */


/* ============================================================
   1. PAGE RESET / WRAPPER
   ============================================================ */

.cc-about-page,
.cc-about-page * {
    box-sizing: border-box;
}

.cc-about-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    color: #0d1b2a;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow: hidden;
}

.cc-about-page img {
    max-width: 100%;
    height: auto;
}

.cc-about-page a {
    text-decoration: none;
}

.cc-about-page p,
.cc-about-page h1,
.cc-about-page h2,
.cc-about-page h3 {
    margin-top: 0;
}

.cc-about-page p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   2. CONTAINER
   ============================================================ */

.cc-about-container {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* ============================================================
   3. EYEBROW
   ============================================================ */

.cc-about-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    color: #c9a86a;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* ============================================================
   4. HERO
   ============================================================ */

.cc-about-hero {
    position: relative;
    width: 100%;
    min-height: 620px;
    display: flex;
    align-items: center;
    background-color: #0d1b2a;

    /*
     * IMPORTANT:
     * If cover-page.jpg is located in your child theme's
     * images folder, this path is correct when the CSS file
     * is also inside the child theme's CSS folder.
     */
    background-image: url("../images/cover-page.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    color: #ffffff;
    isolation: isolate;
}

.cc-about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        linear-gradient(
            90deg,
            rgba(13, 27, 42, 0.92) 0%,
            rgba(13, 27, 42, 0.76) 45%,
            rgba(13, 27, 42, 0.38) 100%
        );
}

.cc-about-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
}

.cc-about-hero-content {
    width: 100%;
    max-width: 700px;
}

.cc-about-hero h1 {
    max-width: 720px;
    margin: 0 0 18px;
    color: #ffffff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -1px;
}

.cc-about-hero-subtitle {
    max-width: 650px;
    margin: 0 0 16px;
    color: #65b32e;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.45;
}

.cc-about-hero-description {
    max-width: 650px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.75;
}


/* ============================================================
   5. HERO ACTIONS
   ============================================================ */

.cc-about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}


/* ============================================================
   6. BUTTONS
   ============================================================ */

.cc-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 50px;
    padding: 13px 24px;

    border: 2px solid transparent;
    border-radius: 8px;

    font-family: "Inter", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cc-about-btn:hover {
    transform: translateY(-2px);
}

.cc-about-btn:focus-visible {
    outline: 3px solid rgba(201, 168, 106, 0.45);
    outline-offset: 3px;
}

.cc-about-btn i {
    flex: 0 0 auto;
}


/* Primary */

.cc-about-btn-primary {
    background: #c9a86a;
    border-color: #c9a86a;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.cc-about-btn-primary:hover {
    background: #b08f55;
    border-color: #b08f55;
    color: #ffffff;
}


/* Secondary */

.cc-about-btn-secondary {
    background: #ffffff;
    border-color: #ffffff;
    color: #0d1b2a;
}

.cc-about-btn-secondary:hover {
    background: #f2f2f2;
    border-color: #f2f2f2;
    color: #0d1b2a;
}


/* WhatsApp */

.cc-about-btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
}

.cc-about-btn-whatsapp:hover {
    background: #1ebe59;
    border-color: #1ebe59;
    color: #ffffff;
}


/* Outline */

.cc-about-btn-outline {
    background: transparent;
    border-color: #c9a86a;
    color: #c9a86a;
}

.cc-about-btn-outline:hover {
    background: #c9a86a;
    border-color: #c9a86a;
    color: #ffffff;
}


/* ============================================================
   7. HERO TRUST ITEMS
   ============================================================ */

.cc-about-hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px 24px;
    margin-top: 30px;
}

.cc-about-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.cc-about-hero-trust i {
    color: #c9a86a;
    font-size: 14px;
}


/* ============================================================
   8. STANDARD SECTIONS
   ============================================================ */

.cc-about-section {
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
}

.cc-about-light-section {
    background: #f7f8fa;
}

.cc-about-dark-section {
    background: #0d1b2a;
    color: #ffffff;
}


/* ============================================================
   9. TWO COLUMN
   ============================================================ */

.cc-about-two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 60px;
    align-items: start;
}

.cc-about-section-heading {
    min-width: 0;
}

.cc-about-section-content {
    min-width: 0;
}


/* ============================================================
   10. SECTION INTRO
   ============================================================ */

.cc-about-section-intro {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.cc-about-section-heading h2,
.cc-about-section-intro h2 {
    margin: 0 0 18px;

    color: #0d1b2a;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cc-about-section-heading h2 {
    max-width: 520px;
}

.cc-about-section-intro p {
    max-width: 700px;
    margin: 0 auto;

    color: #5b6570;
    font-size: 16px;
    line-height: 1.75;
}


/* ============================================================
   11. WHO WE ARE CONTENT
   ============================================================ */

.cc-about-section-content p {
    margin: 0 0 18px;

    color: #46515c;
    font-size: 17px;
    line-height: 1.8;
}


/* ============================================================
   12. MISSION & VISION
   ============================================================ */

.cc-about-purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 45px;
}

.cc-about-purpose-card {
    min-width: 0;
    padding: 34px 28px;

    background: #ffffff;
    border: 1px solid #e9edf1;
    border-radius: 14px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(13, 27, 42, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cc-about-purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 38px rgba(13, 27, 42, 0.1);
}

.cc-about-purpose-icon {
    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: rgba(201, 168, 106, 0.12);
    color: #c9a86a;

    font-size: 28px;
}

.cc-about-purpose-card h3 {
    margin: 0 0 12px;

    color: #0d1b2a;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.35;
}

.cc-about-purpose-card p {
    margin: 0;

    color: #5b6570;
    font-size: 15px;
    line-height: 1.7;
}


/* ============================================================
   13. WHY CHOOSE US
   ============================================================ */

.cc-about-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    margin-top: 45px;
}

.cc-about-benefit-card {
    position: relative;
    min-width: 0;
    padding: 30px;

    background: #ffffff;
    border: 1px solid #e9edf1;
    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cc-about-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(13, 27, 42, 0.09);
}

.cc-about-benefit-number {
    display: block;
    margin-bottom: 14px;

    color: #c9a86a;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.cc-about-benefit-icon {
    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 12px;

    background: rgba(201, 168, 106, 0.12);
    color: #c9a86a;

    font-size: 22px;
}

.cc-about-benefit-card h3 {
    margin: 0 0 10px;

    color: #0d1b2a;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

.cc-about-benefit-card p {
    margin: 0;

    color: #5b6570;
    font-size: 15px;
    line-height: 1.7;
}


/* ============================================================
   14. OUR APPROACH / PROCESS
   ============================================================ */

.cc-about-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 45px;
}

.cc-about-process-card {
    min-width: 0;
    padding: 30px 24px;

    background: #ffffff;
    color: #0d1b2a;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;

    text-align: center;

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cc-about-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.cc-about-process-number {
    display: block;
    margin-bottom: 15px;

    color: #c9a86a;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}

.cc-about-process-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: rgba(201, 168, 106, 0.13);
    color: #c9a86a;

    font-size: 23px;
}

.cc-about-process-card h3 {
    margin: 0 0 10px;

    color: #0d1b2a;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.cc-about-process-card p {
    margin: 0;

    color: #5b6570;
    font-size: 15px;
    line-height: 1.7;
}


/* ============================================================
   15. DARK SECTION TYPOGRAPHY
   ============================================================ */

.cc-about-dark-section .cc-about-section-intro h2 {
    color: #ffffff;
}

.cc-about-dark-section .cc-about-section-intro p,
.cc-about-dark-intro p {
    color: rgba(255, 255, 255, 0.76);
}


/* ============================================================
   16. CALM / CLEAN VALUES
   ============================================================ */

.cc-about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 45px;
}

.cc-about-values-five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cc-about-value-card {
    min-width: 0;
    padding: 30px 22px;

    background: #ffffff;

    border: 1px solid #e9edf1;
    border-radius: 14px;

    text-align: center;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cc-about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(13, 27, 42, 0.09);
}

.cc-about-value-letter {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 64px;
    height: 64px;

    margin: 0 auto 18px;

    border-radius: 50%;

    background: rgba(201, 168, 106, 0.12);
    color: #c9a86a;

    font-family: "Poppins", Arial, sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.cc-about-value-card h3 {
    margin: 0 0 10px;

    color: #0d1b2a;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
}

.cc-about-value-card p {
    margin: 0;

    color: #5b6570;
    font-size: 14px;
    line-height: 1.7;
}


/* ============================================================
   17. SERVICES
   ============================================================ */

.cc-about-services-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-top: 45px;
}

.cc-about-service-link {
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    min-height: 76px;
    padding: 18px;

    background: #ffffff;

    border: 1px solid #e8edf1;
    border-radius: 10px;

    color: #0d1b2a;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.045);

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.cc-about-service-link span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.cc-about-service-link span i {
    flex: 0 0 auto;
    color: #c9a86a;
    font-size: 17px;
}

.cc-about-service-link > i {
    flex: 0 0 auto;
    font-size: 12px;
}

.cc-about-service-link:hover {
    background: #c9a86a;
    border-color: #c9a86a;
    color: #ffffff;
    transform: translateY(-3px);
}

.cc-about-service-link:hover span i {
    color: #ffffff;
}


/* ============================================================
   18. SERVICE AREAS
   ============================================================ */

.cc-about-area-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 45px;
}

.cc-about-area-card {
    min-width: 0;
    padding: 28px;

    background: #ffffff;

    border: 1px solid #e9edf1;
    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.cc-about-area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(13, 27, 42, 0.09);
}

.cc-about-area-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 17px;

    border-radius: 10px;

    background: rgba(201, 168, 106, 0.12);
    color: #c9a86a;

    font-size: 20px;
}

.cc-about-area-card h3 {
    margin: 0 0 8px;

    color: #0d1b2a;
    font-family: "Poppins", Arial, sans-serif;
    font-size: 19px;
    font-weight: 700;
}

.cc-about-area-card p {
    margin: 0;

    color: #5b6570;
    font-size: 14px;
    line-height: 1.65;
}

.cc-about-area-note {
    max-width: 800px;
    margin: 28px auto 0;

    color: #5b6570;
    font-size: 14px;
    line-height: 1.7;

    text-align: center;
}


/* ============================================================
   19. FINAL CTA
   ============================================================ */

.cc-about-final-cta {
    width: 100%;
    padding: 85px 0;

    background:
        linear-gradient(
            135deg,
            #0d1b2a 0%,
            #12263a 100%
        );

    color: #ffffff;
}

.cc-about-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 45px;
}

.cc-about-final-cta-content {
    flex: 1 1 auto;
    min-width: 0;
}

.cc-about-final-cta-content h2 {
    max-width: 700px;
    margin: 0 0 16px;

    color: #ffffff;
    font-family: "Poppins", Arial, sans-serif;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
}

.cc-about-final-cta-content p {
    max-width: 680px;
    margin: 0;

    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.75;
}

.cc-about-final-cta-actions {
    flex: 0 0 auto;

    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}


/* ============================================================
   20. FLOATING WHATSAPP
   ============================================================ */

.cc-about-floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 52px;
    padding: 13px 18px;

    background: #25d366;
    color: #ffffff;

    border-radius: 30px;

    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);

    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.cc-about-floating-whatsapp:hover {
    background: #1ebe59;
    color: #ffffff;
    transform: translateY(-3px);
}

.cc-about-floating-whatsapp i {
    font-size: 21px;
}


/* ============================================================
   21. TABLET — 1100px
   ============================================================ */

@media (max-width: 1100px) {

    .cc-about-container {
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }

    .cc-about-services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .cc-about-values-five {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

}


/* ============================================================
   22. TABLET — 900px
   ============================================================ */

@media (max-width: 900px) {

    .cc-about-section {
        padding: 70px 0;
    }

    .cc-about-hero {
        min-height: 560px;
        padding: 90px 0;
    }

    .cc-about-two-column {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cc-about-section-heading h2 {
        max-width: 760px;
    }

    .cc-about-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-about-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-about-values-grid,
    .cc-about-values-five {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-about-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-about-area-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cc-about-final-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cc-about-final-cta-actions {
        width: 100%;
    }

}


/* ============================================================
   23. MOBILE — 600px
   ============================================================ */

@media (max-width: 600px) {

    .cc-about-page {
        font-size: 15px;
    }

    .cc-about-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cc-about-section {
        padding: 58px 0;
    }


    /* Hero */

    .cc-about-hero {
        min-height: auto;
        padding: 80px 0 70px;

        background-position: center center;
    }

    .cc-about-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(13, 27, 42, 0.9) 0%,
                rgba(13, 27, 42, 0.82) 100%
            );
    }

    .cc-about-hero-content {
        max-width: 100%;
    }

    .cc-about-hero h1 {
        font-size: 34px;
        line-height: 1.15;
        letter-spacing: -0.5px;
    }

    .cc-about-hero-subtitle {
        font-size: 18px;
    }

    .cc-about-hero-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .cc-about-hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .cc-about-hero-actions .cc-about-btn {
        width: 100%;
    }

    .cc-about-hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 11px;
        margin-top: 25px;
    }


    /* Section headings */

    .cc-about-section-heading h2,
    .cc-about-section-intro h2 {
        font-size: 29px;
        line-height: 1.22;
    }

    .cc-about-section-content p {
        font-size: 15px;
        line-height: 1.75;
    }


    /* Grids */

    .cc-about-purpose-grid,
    .cc-about-benefits-grid,
    .cc-about-process-grid,
    .cc-about-values-grid,
    .cc-about-values-five,
    .cc-about-services-grid,
    .cc-about-area-grid {
        grid-template-columns: 1fr;
    }


    /* Cards */

    .cc-about-purpose-card,
    .cc-about-benefit-card,
    .cc-about-process-card,
    .cc-about-value-card,
    .cc-about-area-card {
        padding: 25px 21px;
    }


    /* Services */

    .cc-about-service-link {
        min-height: 68px;
        padding: 16px;
        font-size: 14px;
    }


    /* Final CTA */

    .cc-about-final-cta {
        padding: 65px 0;
    }

    .cc-about-final-cta-inner {
        align-items: stretch;
        text-align: center;
    }

    .cc-about-final-cta-content h2 {
        font-size: 29px;
    }

    .cc-about-final-cta-content p {
        font-size: 15px;
    }

    .cc-about-final-cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cc-about-final-cta-actions .cc-about-btn {
        width: 100%;
    }


    /* Floating WhatsApp */

    .cc-about-floating-whatsapp {
        right: 14px;
        bottom: 14px;

        min-height: 50px;
        padding: 12px 17px;
    }

}


/* ============================================================
   24. SMALL MOBILE — 420px
   ============================================================ */

@media (max-width: 420px) {

    .cc-about-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .cc-about-hero {
        padding-top: 65px;
        padding-bottom: 60px;
    }

    .cc-about-hero h1 {
        font-size: 30px;
    }

    .cc-about-hero-subtitle {
        font-size: 17px;
    }

    .cc-about-eyebrow {
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .cc-about-section-heading h2,
    .cc-about-section-intro h2 {
        font-size: 27px;
    }

    .cc-about-floating-whatsapp span {
        display: none;
    }

    .cc-about-floating-whatsapp {
        width: 52px;
        height: 52px;
        padding: 0;
        border-radius: 50%;
    }

    .cc-about-floating-whatsapp i {
        font-size: 23px;
    }

}


/* ============================================================
   25. ACCESSIBILITY / REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .cc-about-page *,
    .cc-about-page *::before,
    .cc-about-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

}


/* ============================================================
   26. WORDPRESS / THEME CONFLICT PROTECTION
   ============================================================ */

/*
 * These rules prevent common theme/Elementor styles from
 * stretching the About Us content or creating horizontal
 * overflow.
 */

.cc-about-page .cc-about-container,
.cc-about-page .cc-about-section,
.cc-about-page .cc-about-hero,
.cc-about-page .cc-about-final-cta {
    max-width: 100%;
}

.cc-about-page .cc-about-container {
    margin-left: auto;
    margin-right: auto;
}

.cc-about-page .cc-about-services-grid,
.cc-about-page .cc-about-benefits-grid,
.cc-about-page .cc-about-purpose-grid,
.cc-about-page .cc-about-process-grid,
.cc-about-page .cc-about-values-grid,
.cc-about-page .cc-about-area-grid {
    width: 100%;
}

.cc-about-page .cc-about-service-link,
.cc-about-page .cc-about-btn,
.cc-about-page .cc-about-purpose-card,
.cc-about-page .cc-about-benefit-card,
.cc-about-page .cc-about-process-card,
.cc-about-page .cc-about-value-card,
.cc-about-page .cc-about-area-card {
    min-width: 0;
}


/* Prevent long text / URLs from breaking layout */

.cc-about-page h1,
.cc-about-page h2,
.cc-about-page h3,
.cc-about-page p,
.cc-about-page a,
.cc-about-page span {
    overflow-wrap: break-word;
}


/* Prevent accidental horizontal scrolling */

.cc-about-page {
    overflow-x: clip;
}

@supports not (overflow: clip) {
    .cc-about-page {
        overflow-x: hidden;
    }
}