﻿:root {
    /* Brand-ish tokens (tweak to your exact palette) */
    --rcc-purple: #5a3264;
    --rcc-purple-2: #4a2856;
    --rcc-peach: #f2a37f;
    --rcc-text: #2b2b2b;
    --rcc-muted: #7a7a7a;
    --rcc-bg: #ffffff;
}

/* Base section */
.rcc-about {
    background: var(--rcc-bg);
    position: relative;
    overflow: hidden;
}

.rcc-about__inner {
    max-width: 1200px;
}

/* Top area */
.rcc-about__top {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: start;
    padding: 34px 0 18px;
}
body.programs .rcc-about__top {
    grid-template-columns: 1fr;
    text-align:center;
}
/* Breadcrumb */
.rcc-breadcrumb {
    font-size: 0.95rem;
    color: var(--rcc-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

    .rcc-breadcrumb a {
        color: var(--rcc-muted);
        text-decoration: none;
    }

.rcc-breadcrumb__current {
    color: var(--rcc-purple-2);
    font-weight: 800;
    position: relative;
}

    .rcc-breadcrumb__current::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 100%;
        height: 3px;
        background: rgba(90,50,100,.55);
        border-radius: 99px;
    }

.rcc-breadcrumb__sep {
    opacity: .55;
}

/* Title / text */
.rcc-about__title {
    margin: 0 0 18px;
    font-weight: 900;
    color: var(--rcc-purple);
    font-size: clamp(2.2rem, 4.2vw, 3.3rem);
    line-height: 1.06;
}

.rcc-about__desc {
    margin: 0;
    color: var(--rcc-text);
    font-size: 1.15rem;
    line-height: 1.35;
    max-width: 560px;
}

    .rcc-about__desc strong {
        font-weight: 900;
    }

/* Media blob */
.rcc-about__media {
    position: relative;
    min-height: 320px;
    padding-top: 8px;
}

.rcc-blob {
    position: absolute;
    inset: 22px 0 0 0;
    margin-left: auto;
    width: min(520px, 100%);
    height: 330px;
    border-radius: 120px 180px 140px 190px / 140px 160px 130px 170px;
    border: 2px solid rgba(90,50,100,.25);
    box-shadow: 0 0 0 3px rgba(242,163,127,.9) inset; /* peach rim */
    transform: rotate(-2deg);
}

.rcc-about__img {
    position: relative;
    display: block;
    width: min(520px, 100%);
    height: 330px;
    margin-left: auto;
    object-fit: cover;
    border-radius: 120px 180px 140px 190px / 140px 160px 130px 170px;
    transform: rotate(-2deg);
}

/* Dashed doodles around top */
.rcc-doodles {
    pointer-events: none;
    position: absolute;
    inset: 0;
}

.rcc-dash {
    position: absolute;
    border: 2px dashed rgba(90,50,100,.5);
    border-radius: 999px;
    opacity: .75;
}

.rcc-dash--left {
    width: 220px;
    height: 520px;
    left: -140px;
    top: -80px;
    border-right: 0;
    border-bottom: 0;
    transform: rotate(-8deg);
}

.rcc-dash--mid {
    width: 220px;
    height: 220px;
    left: 520px;
    top: 24px;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(10deg);
}

.rcc-dash--right {
    width: 220px;
    height: 420px;
    right: -150px;
    top: 40px;
    border-left: 0;
    border-top: 0;
    transform: rotate(8deg);
}

/* Waves */
.rcc-waves {
    position: relative;
    height: 150px;
    margin-top: 18px;
}

.rcc-wave {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
}

.rcc-wave--peach {
    top: 0;
    height: 80px;
    fill: var(--rcc-peach);
    opacity: .95;
}

.rcc-wave--purple {
    top: 22px;
    height: 140px;
    fill: var(--rcc-purple);
}

/* Values section */
.rcc-values {
    background: var(--rcc-purple);
    color: #fff;
    padding: 34px 0 56px;
    position: relative;
}

    .rcc-values h2,
    .rcc-values h3,
    .rcc-values ul li,
    .rcc-values ol li,
    .rcc-values a,
    .rcc-values p {
        color: #fff;
        text-decoration:none;
    }

    .rcc-values__inner {
        max-width: 1200px;
        position: relative;
        padding-top: 16px;
    }

.rcc-values__path {
    position: absolute;
    left: 0;
    right: 0;
    top: 70px;
    width: 100%;
    height: 120px;
    opacity: .9;
    pointer-events: none;
}

/* Doodle images (optional) */
.rcc-values__doodle {
    position: absolute;
    pointer-events: none;
    opacity: .95;
}

.rcc-values__doodle--rainbow {
    left: -15px;
    top: -64px;
    width: 90px;
    transform: rotate(-26deg);
}

.rcc-values__doodle--flower {
    left: 50%;
    top: -38px;
    width: 42px;
    transform: translateX(-50%);
}

.rcc-values__doodle--cloud {
    right: 18px;
    top: -35px;
    width: 60px;
}

.rcc-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 34px;
    align-items: start;
   /* margin-top: 36px;*/
}

.rcc-value {
    text-align: center;
    position: relative;
}

.rcc-value__icon {
    width: 118px;
    height: 118px;
    margin: 0 auto 16px;
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .rcc-value__icon img {
        width: 80%;
        height: 80%;
        object-fit: contain;
        display: block;
    }

.rcc-value__title {
    margin: 0 0 10px;
    font-weight: 900;
    font-size: 1.25rem;
}

.rcc-value__text {
    margin: 0;
    opacity: .95;
    font-size: 1rem;
    line-height: 1.35;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating buttons (optional) */
.rcc-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 50;
}

.rcc-fab__btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 0;
    background: var(--rcc-purple);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 10px 18px rgba(0,0,0,.18);
    cursor: default;
    float:right;
}

.rcc-fab__btn--up {
    background: var(--rcc-purple-2);
}

/* Responsive */
@media (max-width: 992px) {
    .rcc-about__top {
        grid-template-columns: 1fr;
        gap: 26px;
        padding-bottom: 8px;
    }

    .rcc-about__img, .rcc-blob {
        margin-left: 0;
        width: 100%;
        height: 280px;
    }

    .rcc-values__grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
        gap: 26px;
    }

    .rcc-values__path {
        display: none;
    }
}

@media (max-width: 520px) {
    .rcc-breadcrumb {
        margin-bottom: 22px;
    }

    .rcc-values__grid {
        grid-template-columns: 1fr;
    }

    .rcc-waves {
        height: 120px;
    }

    .rcc-wave--purple {
        top: 16px;
    }
}

:root {
    --rcc-purple: #5a3264;
    --rcc-purple-soft: #756472;
    --rcc-text: #2b2b2b;
    --rcc-orange: #f36f21;
}

/* SECTION */
.rcc-contact {
    background: #fff;
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}

.rcc-contact__inner {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    position: relative;
}

/* LEFT */
.rcc-eyebrow {
    font-size: .75rem;
    letter-spacing: .12em;
    color: var(--rcc-purple);
    font-weight: 800;
}

.rcc-contact__title {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--rcc-purple);
    margin: 6px 0 18px;
}

.rcc-contact__text {
    font-size: 1.05rem;
    line-height: 1.45;
    color: var(--rcc-text);
    max-width: 520px;
}

/* CONTACT ITEMS */
.rcc-contact__item {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.rcc-contact__icon {
    width: 64px;
    height: 64px;
    border-radius: 24px 28px 24px 30px;
    border: 2px solid var(--rcc-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rcc-purple);
}

    .rcc-contact__icon svg {
        width: 28px;
        height: 28px;
    }

.rcc-contact__item h4 {
    margin: 0 0 4px;
    color: var(--rcc-purple);
    font-weight: 900;
}

.rcc-contact__item p {
    margin: 0;
}

/* FORM */
.rcc-contact__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .rcc-contact__form input,
    .rcc-contact__form textarea {
        border: none;
        background: var(--rcc-purple-soft);
        color: #fff;
        padding: 18px 20px;
        border-radius: 14px;
        font-size: .95rem;
    }

        .rcc-contact__form input::placeholder,
        .rcc-contact__form textarea::placeholder {
            color: rgba(255,255,255,.75);
        }

    .rcc-contact__form textarea {
        resize: none;
    }

/* BUTTON */
.rcc-btn,
input.rcc-btn {
    margin-top: 12px;
    align-self: flex-start;
    background: #fff;
    color: var(--rcc-purple);
    border: 2px solid var(--rcc-purple);
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: .2s ease;
}

    .rcc-btn:hover,
    input.rcc-btn:hover{
        background: var(--rcc-purple);
        color: #fff;
    }

/* DOODLES */
.rcc-contact__doodle {
    position: absolute;
    pointer-events: none;
}

.rcc-contact__doodle--stars {
    top: -10px;
    left: 220px;
    width: 80px;
}

.rcc-contact__doodle--path {
    top: -40px;
    right: -60px;
    width: 600px;
    opacity: .6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .rcc-contact__inner {
        grid-template-columns: 1fr;
    }

    .rcc-contact__form {
        margin-top: 32px;
    }
}


.col-1.default{
    width:100%;
}

nav > .row > * {
    width:unset;
}

.rcc-faq {
    --rcc-purple: #5a3264;
    --rcc-purple-2: #4a2856;
    --rcc-peach: #f2a37f;
    --rcc-bg: #f7f3f7;
    --rcc-border: #6b3b78;
    --rcc-text: #2b2b2b;
}

/* Section */
.rcc-faq {
    background: var(--rcc-bg);
    padding: 46px 0 64px;
    position: relative;
    overflow: hidden;
}

.rcc-faq__inner {
    /*max-width: 1180px;*/
    position: relative;
}

/* Header */
.rcc-faq__head {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.rcc-faq__eyebrow {
    font-size: .7rem;
    letter-spacing: .14em;
    font-weight: 900;
    color: var(--rcc-purple);
    opacity: .95;
    margin-bottom: 4px;
}

.rcc-faq__title {
    font-size: 2rem;
    margin: 0 0 6px;
    color: var(--rcc-purple);
    font-weight: 900;
}

.rcc-faq__sub {
    margin: 0;
    color: rgba(43,43,43,.85);
    font-size: .95rem;
    max-width: 520px;
}

/* Header doodles */
.rcc-faq__doodle {
    position: absolute;
    pointer-events: none;
}

.rcc-faq__doodle--cloud {
    right: 38px;
    top: -6px;
    width: 52px;
    opacity: .8;
}

.rcc-faq__doodle--flower {
    right: 0;
    top: 8px;
    width: 28px;
    opacity: .8;
}

/* Accordion */
.rcc-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

.rcc-acc {
    border: 1.8px solid rgba(90,50,100,.65);
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}

/* Summary row */
.rcc-acc__sum {
    list-style: none;
    cursor: pointer;
    position: relative;
    padding: 18px 56px 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--rcc-purple);
    font-weight: 900;
}

    .rcc-acc__sum::-webkit-details-marker {
        display: none;
    }

.rcc-acc__title {
    font-size: 1.05rem;
}

/* Wavy dashed line inside header */
.rcc-acc__wave {
    flex: 1;
    height: 18px;
    min-width: 120px;
    opacity: .9;
}

/* Pencil */
.rcc-acc__pencil {
    width: 18px;
    height: 18px;
    opacity: .85;
}

/* Toggle circle */
.rcc-acc__toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--rcc-peach);
}
    /* plus */
    .rcc-acc__toggle::before,
    .rcc-acc__toggle::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        width: 10px;
        height: 2px;
        background: #fff;
        transform: translate(-50%,-50%);
        border-radius: 2px;
    }

    .rcc-acc__toggle::after {
        width: 2px;
        height: 10px;
    }
/* open => minus */
details[open] .rcc-acc__toggle::after {
    display: none;
}

/* Body */
.rcc-acc__body {
    padding: 0 22px 18px;
    color: var(--rcc-text);
    font-size: .92rem;
}

.rcc-acc__lead {
    margin: 0 0 10px;
}

.rcc-acc__list {
    margin: 0;
    padding-left: 18px;
}

    .rcc-acc__list li {
        margin: 6px 0;
    }

.rcc-acc__note {
    margin-top: 10px;
    display: inline-block;
    color: var(--rcc-purple);
    font-weight: 900;
    font-style: italic;
    position: relative;
}

    .rcc-acc__note::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -4px;
        height: 3px;
        background: var(--rcc-peach);
        border-radius: 999px;
    }

/* Callout card */
.rcc-faq-callout {
    margin-top: 30px;
    border: 1.8px solid rgba(90,50,100,.65);
    border-radius: 8px;
    background: #fff;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    padding: 18px 18px;
    position: relative;
    overflow: hidden;
}

.max-w-1200{
    max-width:1200px;
}

.rcc-faq-callout__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid var(--rcc-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

    .rcc-faq-callout__icon svg {
        width: 24px;
        height: 24px;
    }

.rcc-faq-callout__content h3 {
    margin: 0 0 6px;
    color: var(--rcc-purple);
    font-weight: 900;
    font-size: 1.05rem;
}

.rcc-faq-callout__content p {
    margin: 0 0 12px;
    color: rgba(43,43,43,.9);
    font-size: .92rem;
    line-height: 1.35;
}

.rcc-faq-callout__content a {
    color: var(--rcc-purple);
    font-weight: 800;
    text-decoration: underline;
}

.rcc-faq-callout__btn {
    display: inline-block;
    padding: 10px 14px;
    border: 2px solid var(--rcc-purple);
    border-radius: 999px;
    text-decoration: none !important;
    font-weight: 900;
    font-size: .86rem;
    background: #fff;
}

/* Top-right corner notch + peach accent */
.rcc-faq-callout__corner {
    position: absolute;
    right: -20px;
    top: -18px;
    width: 96px;
    height: 56px;
    background: var(--rcc-purple);
    border-bottom-left-radius: 26px;
}

    /*.rcc-faq-callout__corner::after {
        content: "";
        position: absolute;
        left: -28px;
        bottom: -10px;
        width: 70px;
        height: 18px;
        background: var(--rcc-peach);
        border-radius: 999px;
        transform: rotate(-8deg);
    }*/

/* Responsive */
@media (max-width: 820px) {
    .rcc-acc__wave {
        display: none;
    }

    .rcc-faq-callout {
        grid-template-columns: 1fr;
    }

    .rcc-faq-callout__left {
        display: none;
    }
}
/*#region Programs & Services */
.rcc-ps {
    --rcc-purple: #5a3264;
    --rcc-purple-2: #4a2856;
    --rcc-peach: #f2a37f;
    --rcc-bg: #f7f3f7;
    --rcc-text: #2b2b2b;
}

.rcc-ps {
    background: #fff;
    padding: 34px 0 0px;
    position: relative;
    overflow: hidden;
}

.rcc-ps__inner {
    max-width: 1200px;
    position: relative;
}

/* Breadcrumb */
.rcc-ps__breadcrumb {
    font-size: .85rem;
    color: rgba(43,43,43,.65);
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 18px;
}

    .rcc-ps__breadcrumb a {
        color: rgba(43,43,43,.65);
        text-decoration: none;
    }

.rcc-ps__crumb-current {
    color: var(--rcc-purple);
    font-weight: 900;
    position: relative;
}

    .rcc-ps__crumb-current::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -6px;
        height: 3px;
        background: rgba(90,50,100,.55);
        border-radius: 999px;
    }

/* Title */
.rcc-ps__header{
    text-align: center;
}
.rcc-ps__title {
    text-align: center;
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 900;
    color: var(--rcc-purple);
}

.rcc-ps__header p,
.rcc-ps__intro {
    text-align: center;
    margin: 0 auto 36px;
    max-width: 760px;
    color: rgba(43,43,43,.85);
    font-size: 1rem;
    line-height: 1.35;
}

    .rcc-ps__intro strong {
        font-weight: 900;
    }

/* Grid */
.rcc-ps-bg-gray{
    background-color: var(--rcc-bg);
}
.rcc-ps__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 34px;
    position: relative;
    z-index: 2;
}

/* Card */
.rcc-ps-card {
    position: relative;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 22px rgba(0,0,0,.10);
    padding: 18px;
    display: grid;
    /*grid-template-columns: 1fr 160px;*/
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: center;
    min-height: 160px;
    overflow: hidden;
}

.rcc-ps-card__corner {
    position: absolute;
    right: 0;
    top: 0;
    width: 72px;
    height: 44px;
    background: var(--rcc-purple);
    border-bottom-left-radius: 18px;
}

    .rcc-ps-card__corner::after {
        content: "";
        position: absolute;
        left: -26px;
        bottom: -10px;
        width: 64px;
        height: 18px;
        /*background: var(--rcc-peach);*/
        border-radius: 999px;
        transform: rotate(-8deg);
    }

.rcc-ps-card__title {
    margin: 0 0 10px;
    color: var(--rcc-purple);
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1.05;
    position: relative;
    display: inline-block;
    padding-left: 14px;
}
    /* little orange corner mark */
    .rcc-ps-card__title::before {
        content: "";
        position: absolute;
        left: 0;
        top: .35em;
        width: 10px;
        height: 10px;
        border-left: 3px solid var(--rcc-peach);
        border-bottom: 3px solid var(--rcc-peach);
        border-radius: 0 0 0 3px;
    }

.rcc-ps-card__text {
    margin: 0 0 12px;
    color: rgba(43,43,43,.9);
    font-size: .92rem;
    line-height: 1.25;
    max-width: 260px;
}

.rcc-ps-card__rule {
    height: 1px;
    width: 92%;
    background: rgba(90,50,100,.25);
    margin: 10px 0 10px;
}

.rcc-ps-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: rgba(90,50,100,.7);
    font-weight: 700;
    font-size: .9rem;
}

.rcc-ps-card__dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--rcc-purple);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    line-height: 1;
    transform: translateY(-1px);
}

.rcc-ps-card__media {
    /*width: 160px;
    height: 120px;*/
    border-radius: 6px;
    overflow: hidden;
    justify-self: end;
    background: #eee;
}

    .rcc-ps-card__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        max-width:200px;
    }

/* Doodles */
.rcc-ps__doodle {
    position: absolute;
    pointer-events: none;
    opacity: .8;
    z-index: 1;
}

.rcc-ps__doodle--pencil {
    left: -18px;
    top: 360px;
    width: 22px;
    transform: rotate(-20deg);
}

.rcc-ps__doodle--cloud {
    right: -10px;
    top: 470px;
    width: 60px;
}

/* Responsive */
@media (max-width: 900px) {
    .rcc-ps__grid {
        grid-template-columns: 1fr;
    }

    .rcc-ps-card {
        grid-template-columns: 1fr 150px;
    }
}

@media (max-width: 520px) {
    .rcc-ps-card {
        grid-template-columns: 1fr;
    }

    .rcc-ps-card__media {
        width: 100%;
        height: 160px;
        justify-self: stretch;
    }

    .rcc-ps-card__text {
        max-width: none;
    }
}


/*#endregion */
