.pink-highlight {
    color: var(--color-1);
}

/* --- ADHD Section Specific Styling --- */
.adhd-coaching-section {
    padding: 100px 0;
    overflow: hidden;
}

/* Decorative offset background for the image to give a high-end agency feel */
.image-wrapper {
    position: relative;
    z-index: 1;
}
.image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: #fce4ec;
    border-radius: 12px;
    z-index: -1;
    transition: transform 0.3s ease;
}
.image-wrapper:hover::before {
    transform: translate(10px, 10px);
}
.image-wrapper img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    /* Using a min-height ensures the placeholder looks good, remove for actual image if needed */
    min-height: 450px; 
}

/* Certification Badge */
.certification-badge {
    display: inline-flex;
    align-items: center;
    background-color: #1b1625;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}
.certification-badge i {
    color: var(--color-1);
    font-size: 1.2rem;
    margin-right: 8px;
}

/* Quote Styling for her lived experience */
.lived-experience-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-1);
    border-left: 4px solid var(--color-1);
    padding-left: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
    font-weight: 500;
    font-family: var(--font-02);
}
.adhd-coaching-section p {
    font-family: var(--font-02);
    font-size: 16px;
    color: #212529 !important;
}
.lead {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-02);
}
@media(max-width:767.98px){
    .image-wrapper img {
    object-fit: contain;
    min-height: auto;
}
.adhd-coaching-section {
    padding: 40px 0 0px;
    overflow: hidden;
}
.certification-badge {
    font-size: 12px;
}
}