/* Brand Variables */
:root {
    --db-yellow: #fbdf00;
    --db-blue: #99cccc;
    --db-pale-blue: #e6f4f1;
    --db-cream: #fdf0ca;
    --db-white: #ffffff;
    --db-text: #111111;
    --db-soft-border: rgba(153, 204, 204, 0.75);
    --db-soft-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    --db-image-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --db-dark-teal: #214747;
}

/* Reset and Font Setup */
body {
    font-family: 'proxima-nova', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--db-white);
    color: var(--db-text);
}

/* General Container Styles */
.full-width {
    width: 100%;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    min-width: 300px;
    margin: 0 auto;
    text-align: center;
    box-sizing: border-box;
}

/* Top Banner Styles */
.top-banner {
    background-color: var(--db-blue);
    padding: 10px 0;
}

.top-banner img {
    width: 100%;
    max-width: 350px;
    height: auto;
}

/* Optional Logo Hover */
.logo-hover {
    transition: transform 0.25s ease, filter 0.25s ease;
}

.logo-hover:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 5px rgba(251, 223, 0, 0.6));
}

/* Links Bar / Main Navigation Styles */
.links-bar {
    background-color: var(--db-yellow);
    font-weight: 700;
    font-size: 17px;
    color: black;
    padding: 5px 0;
    border-bottom: 1px solid var(--db-soft-border);
}

.links-bar .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav-container {
    position: relative;
}

.menu-button {
    display: none;
    width: 100%;
    border: 0;
    border-radius: 0;
    font: inherit;
}

.menu-button:focus-visible {
    outline: 3px solid var(--db-dark-teal);
    outline-offset: -5px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-links a,
.nav-dropdown-trigger {
    display: inline-block;
    text-decoration: none;
    color: black;
    margin: 3px 2px;
    padding: 6px 10px;
    border-right: none;
    border-bottom: 2px solid transparent;
    letter-spacing: 0.01em;
    line-height: 1.2;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.nav-link-active,
.nav-links a[aria-current="page"],
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger,
.nav-dropdown-active .nav-dropdown-trigger {
    background-color: rgba(153, 204, 204, 0.35);
    border-bottom-color: var(--db-blue);
    color: black;
    text-decoration: none;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger::after {
    content: " ▾";
    font-size: 0.85em;
}

.nav-submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 2px;
    min-width: 230px;
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    z-index: 9999;
    text-align: left;
    padding: 6px 0;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
    display: block;
}

.nav-submenu a {
    display: block;
    margin: 0;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(153, 204, 204, 0.55);
    font-size: 16px;
    font-weight: 700;
    background-color: var(--db-cream);
}

.nav-submenu a:last-child {
    border-bottom: none;
}

.nav-submenu a:hover,
.nav-submenu a:focus,
.nav-submenu a.nav-link-active,
.nav-submenu a[aria-current="page"] {
    background-color: rgba(153, 204, 204, 0.45);
    border-bottom-color: rgba(153, 204, 204, 0.55);
    text-decoration: none;
}

/* Section Styles */
.section {
    padding: 20px 0;
    background-color: white;
}

.section .headline,
.section .tagline {
    font-size: 48px;
    font-weight: 300;
    margin: 10px 0;
}

/* Picture Section Styles */
.picture-section {
    background-color: var(--db-pale-blue);
    padding: 30px 0;
    border-bottom: 1px solid var(--db-soft-border);
}

.picture-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
}

.picture-section img {
    border-radius: 50%;
    width: 420px;
    height: 420px;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    margin-right: 20px;
    flex-shrink: 0;
    border: 4px solid white;
    box-shadow: var(--db-image-shadow);
}

.picture-section .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

.picture-section .text h1 {
    font-size: 48px;
    line-height: 1.08;
    font-weight: 700;
    margin: 0 0 16px;
}

.picture-section .text h2 {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 300;
    margin: 0;
}

.picture-section .text h4,
.picture-section .text h6 {
    margin: 0;
}

/* Box Picture Section Styles */
.box-picture-section-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 40px;
}

.box-picture-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
}

.box,
.picture {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    box-sizing: border-box;
}

.box {
    background-color: var(--db-cream);
    text-align: left;
    border-radius: 0;
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
}

.box h4 {
    background-color: var(--db-yellow);
    padding: 10px;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.box p {
    padding: 0 20px;
    font-weight: 400;
    margin: 10px 0;
    flex-grow: 1;
}

.picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Section Styles */
.text-section {
    padding: 24px 0 20px;
    background-color: white;
    text-align: left;
}

.text-section h3 {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

.text-section h2 {
    font-size: 36px;
    font-weight: 400;
    text-align: left;
    padding: 0 20px;
}

.text-section p {
    font-size: 18px;
    font-weight: 400;
    padding: 0 20px;
}

/* Reusable Highlighted Content Sections */
.content-heading {
    background-color: var(--db-yellow);
    border-left: 10px solid var(--db-blue);
    padding: 12px 18px;
    margin-top: 32px;
    margin-bottom: 0;
    font-size: 24px;
    font-weight: 700;
    border-radius: 0;
    text-align: center;
}

.text-section h3.content-heading {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

.content-panel {
    background-color: var(--db-cream);
    padding: 22px 28px;
    margin-bottom: 32px;
    border-radius: 0;
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
    text-align: left;
}

.content-panel p {
    line-height: 1.7;
    margin: 0 0 16px 0;
    padding: 0;
    font-size: 18px;
    font-weight: 400;
}

.content-panel p:last-child {
    margin-bottom: 0;
}

.content-panel ul {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 16px 0;
    padding-left: 24px;
}

.content-panel li {
    margin-bottom: 8px;
}

/* Gentle Visual Breaks */
.content-break {
    background-color: var(--db-pale-blue);
    border: 1px solid var(--db-soft-border);
    border-left: 10px solid var(--db-yellow);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
    margin: 36px 0;
    padding: 24px 28px;
    text-align: center;
}

.content-break p {
    margin: 0;
    padding: 0;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 700;
}

.content-break .content-break-small {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 400;
}

.content-break .button-link {
    margin-top: 16px;
    margin-bottom: 0;
}

/* Softer homepage start panel */
.soft-start-panel {
    background-color: var(--db-pale-blue);
    border: 1px solid var(--db-soft-border);
    border-left: 10px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
    margin: 36px 0 10px;
    padding: 24px 28px;
    text-align: left;
}

.soft-start-panel p {
    margin: 0 0 12px 0;
    padding: 0;
    color: var(--db-text);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}

.soft-start-panel p:last-child {
    margin-bottom: 0;
}

.soft-start-panel .soft-start-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.45;
}

/* About page spacing */
.about-page {
    padding-top: 22px;
}

.about-page .content-heading:first-child {
    margin-top: 0;
}

/* Legal / policy pages */
.legal-page h3.content-heading {
    text-align: left;
}

/* Services Section Styles */
.services-section {
    padding: 24px 0;
    background-color: white;
}

.services-section h2 {
    font-size: 36px;
    font-weight: 400;
    margin-top: 0;
}

.services-section h3 {
    text-align: center;
    font-weight: 300;
    margin-bottom: 20px;
}

.services-boxes {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px 0;
}

.service-box {
    width: 28%;
    background-color: var(--db-cream);
    padding: 0;
    text-align: left;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
}

.service-box h4 {
    background-color: var(--db-yellow);
    border-left: 10px solid var(--db-blue);
    padding: 10px;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    text-align: left;
    box-sizing: border-box;
}

.service-box p {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 400;
    margin: 5px 0;
}

.service-box ul {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    padding: 10px 30px 10px 40px;
    margin: 5px 0;
}

.service-box li {
    margin-bottom: 8px;
}

.service-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* 2x2 layout */
.services-boxes-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.services-boxes-2x2 .service-box {
    width: 100%;
}

/* Equal height service/profile boxes */
.equal-height-boxes {
    margin-top: 35px;
    margin-bottom: 40px;
    align-items: stretch;
}

.equal-height-boxes .service-box {
    display: flex;
    flex-direction: column;
}

.equal-height-boxes .service-box h4 {
    font-weight: 700;
    border-left: 10px solid var(--db-blue);
    box-sizing: border-box;
    text-align: left;
}

.equal-height-boxes .service-box img {
    margin-top: auto;
}

/* About page profile cards */
.about-page .equal-height-boxes .service-box > p:first-of-type {
    min-height: 74px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.about-page .equal-height-boxes .service-box img,
.profile-card-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
    margin-top: 0;
}

.about-page .equal-height-boxes .service-box img[src*="sonay"],
.profile-card-image-sonay {
    object-position: center 35%;
}

/* Optional Button Styles */
.button-link,
.service-box .button-link,
.content-panel .button-link {
    display: inline-block;
    background-color: var(--db-blue);
    color: black;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 18px;
    margin: 10px 20px 20px;
    border: 2px solid var(--db-blue);
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.button-link:hover,
.service-box .button-link:hover,
.content-panel .button-link:hover {
    background-color: var(--db-yellow);
    border-color: black;
    color: black;
    text-decoration: none;
}

/* Shared Section Heading Style */
.faq-section h2,
.testimonial-section h2 {
    background-color: var(--db-yellow);
    border-left: 10px solid var(--db-blue);
    padding: 12px 18px;
    margin: 32px 0 22px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    box-sizing: border-box;
    box-shadow: none;
}

/* Testimonials Section Styles */
.testimonial-section {
    text-align: center;
    padding: 25px 0;
    background-color: white;
}

.testimonial-section p {
    font-size: 18px;
    font-weight: 400;
}

.testimonial-slider {
    position: relative;
    background-color: var(--db-pale-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    overflow: hidden;
}

.testimonial-slider .testimonial-content {
    position: relative;
    text-align: center;
    z-index: 1;
    width: 70%;
}

.testimonial-slider::before,
.testimonial-slider::after {
    font-size: 72px;
    color: black;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.testimonial-slider::before {
    content: "\201C";
    left: 40px;
}

.testimonial-slider::after {
    content: "\201D";
    right: 40px;
}

.testimonial-content h3 {
    font-size: 24px;
    font-family: 'proxima-nova', sans-serif;
    margin: 0;
    text-align: center;
}

.testimonial-content p {
    font-size: 18px;
    font-family: 'proxima-nova', sans-serif;
    margin: 10px 0 0;
}

/* Slider Styles */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: auto;
    background-color: var(--db-blue);
}

.slider ul {
    display: flex;
    padding: 0;
    margin: 0;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.slider li {
    list-style: none;
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider li span.quote {
    display: inline-block;
    width: 80%;
    font-size: 1.2rem;
    padding: 20px;
    border-radius: 0;
    background-color: var(--db-blue);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px;
}

.slider-nav button {
    background-color: var(--db-yellow);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    color: black;
}

/* Footer Styles */
.footer {
    background-color: var(--db-yellow);
    padding: 10px 0;
    border-top: 1px solid var(--db-soft-border);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

.footer .container .left,
.footer .container .right {
    text-align: center;
}

.footer .container a {
    display: inline-block;
    text-decoration: none;
    color: black;
    margin: 3px 4px;
    padding: 6px 10px;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: background-color 0.18s ease, border-color 0.18s ease;
}

.footer .container a:hover,
.footer .container a:focus {
    background-color: rgba(153, 204, 204, 0.35);
    border-bottom-color: var(--db-blue);
    color: black;
    text-decoration: none;
}

.footer-bottom {
    background-color: var(--db-blue);
    text-align: center;
    padding: 10px 0;
}

.footer-bottom .container {
    text-align: center;
}

.footer-bottom a {
    display: inline-block;
    text-decoration: none;
    color: black;
    margin: 3px 4px;
    padding: 6px 10px;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: background-color 0.18s ease, border-color 0.18s ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
    background-color: rgba(251, 223, 0, 0.45);
    border-bottom-color: var(--db-yellow);
    color: black;
    text-decoration: none;
}

/* Common Link Styles */
a {
    text-decoration: none;
    color: inherit;
    transition: text-decoration 0.3s ease, background-color 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

/* Body Text Link Styles */
.content-panel p a,
.content-panel li a,
.service-box p a,
.service-box li a,
.text-section p a,
.faq-section .p p a {
    color: #000;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--db-blue);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.content-panel p a:hover,
.content-panel li a:hover,
.service-box p a:hover,
.service-box li a:hover,
.text-section p a:hover,
.faq-section .p p a:hover {
    background-color: var(--db-yellow);
    text-decoration-color: #000;
}

/* Clearfix */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* FAQ Section Styles */
.faq-section {
    padding: 28px 0 34px;
    background-color: var(--db-white);
    text-align: left;
}

.faq-section .c {
    position: relative;
    margin-bottom: 12px;
}

.faq-section input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 1px;
    opacity: 0;
    visibility: hidden;
}

.faq-section h3 {
    background-color: var(--db-yellow);
    color: black;
    padding: 0;
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    display: block;
    cursor: pointer;
    position: relative;
    border-left: 10px solid var(--db-blue);
    border-top: 1px solid var(--db-soft-border);
    border-right: 1px solid var(--db-soft-border);
    border-bottom: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
}

.faq-section h3 label {
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 15px 20px;
    line-height: 1.25;
}

.faq-section h3 label::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 12px solid var(--db-dark-teal);
    margin-right: 14px;
    flex-shrink: 0;
    transform-origin: 35% 50%;
    transition: transform 0.22s ease;
}

.faq-section .p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    background-color: var(--db-cream);
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition:
        max-height 0.38s ease,
        opacity 0.24s ease,
        transform 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease;
}

.faq-section .p p {
    padding: 0 20px;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
    transition: padding 0.28s ease;
}

.faq-section input[type="checkbox"]:checked ~ h3 label::before {
    transform: rotate(90deg);
}

.faq-section input[type="checkbox"]:checked ~ .p {
    max-height: 900px;
    opacity: 1;
    transform: translateY(0);
    border-left-color: var(--db-soft-border);
    border-right-color: var(--db-soft-border);
    border-bottom-color: var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
}

.faq-section input[type="checkbox"]:checked ~ .p p:first-child {
    padding-top: 16px;
}

.faq-section input[type="checkbox"]:checked ~ .p p {
    padding-bottom: 14px;
}

.faq-section input[type="checkbox"]:checked ~ .p p:last-child {
    padding-bottom: 18px;
}

/* Remove rounded corners from general content elements */
.content-heading,
.content-panel,
.service-box,
.box,
.faq-section .p,
.slider li span.quote {
    border-radius: 0;
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
    form {
        width: 80%;
        max-width: 80%;
    }

    input,
    select,
    textarea {
        width: 80%;
        box-sizing: border-box;
    }

    .container {
        width: 90%;
        max-width: 100%;
        min-width: auto;
    }

    .top-banner {
        padding: 8px 0;
    }

    .top-banner img {
        max-width: 195px;
    }

    /* Mobile hamburger navigation */
    .links-bar {
        padding: 0;
        font-size: 18px;
        border-bottom: none;
    }

    .links-bar .container {
        width: 100%;
        max-width: 100%;
        display: block;
        text-align: left;
    }

    .nav-ready .menu-button:not([hidden]) {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 18px;
        font-size: 20px;
        font-weight: 700;
        cursor: pointer;
        background-color: var(--db-yellow);
        color: black;
        box-sizing: border-box;
    }

    .menu-button span {
        font-size: 24px;
        line-height: 1;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        background-color: var(--db-cream);
        border-top: 2px solid var(--db-blue);
    }

    .nav-ready:not(.nav-open) .nav-links {
        display: none;
    }

    .nav-links a,
    .nav-dropdown-trigger {
        display: block;
        width: 100%;
        box-sizing: border-box;
        padding: 13px 18px;
        margin: 0;
        border-right: none;
        border-bottom: 1px solid var(--db-blue);
        font-size: 18px;
        text-align: left;
        letter-spacing: 0.01em;
        background-color: var(--db-cream);
    }

    .nav-links a:hover,
    .nav-links a:focus,
    .nav-links a.nav-link-active,
    .nav-links a[aria-current="page"],
    .nav-dropdown-active .nav-dropdown-trigger {
        background-color: var(--db-blue);
        color: black;
        text-decoration: none;
    }

    .nav-dropdown {
        display: block;
        width: 100%;
        position: static;
    }

    .nav-dropdown-trigger::after {
        content: "";
    }

    .nav-submenu {
        display: block;
        position: static;
        width: 100%;
        min-width: 0;
        box-shadow: none;
        border: none;
        padding: 0;
        background-color: #fff8df;
    }

    .nav-submenu a {
        padding: 11px 18px 11px 34px;
        font-size: 16px;
        background-color: #fff8df;
        border-bottom: 1px solid rgba(153, 204, 204, 0.65);
    }

    .nav-submenu a:hover,
    .nav-submenu a:focus,
    .nav-submenu a.nav-link-active,
    .nav-submenu a[aria-current="page"] {
        background-color: var(--db-blue);
        text-decoration: none;
    }

    .section .headline,
    .section .tagline {
        font-size: 24px;
    }

    .picture-section {
        padding: 25px 0 35px;
    }

    .picture-section .container {
        flex-direction: column;
    }

    .picture-section img {
        width: 235px;
        height: 235px;
        margin-right: 0;
        margin-bottom: 24px;
        object-fit: cover;
        object-position: center;
        border: 4px solid white;
        box-shadow: var(--db-image-shadow);
    }

    .picture-section .text {
        width: 100%;
        padding: 0 18px;
        box-sizing: border-box;
    }

    .picture-section .text h1 {
        font-size: 34px;
        line-height: 1.08;
        margin: 0 0 14px;
    }

    .picture-section .text h2 {
        font-size: 19px;
        line-height: 1.35;
        margin: 0;
        font-weight: 300;
    }

    .picture-section .text h4 {
        font-size: 24px;
    }

    .picture-section .text h6 {
        font-size: 18px;
    }

    .box-picture-section {
        flex-direction: column;
        width: 90%;
    }

    .services-boxes {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .service-box {
        width: 100%;
    }

    .services-boxes-2x2 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .services-boxes-2x2 .service-box {
        width: 100%;
    }

    .about-page .equal-height-boxes .service-box > p:first-of-type {
        min-height: 0;
        display: block;
    }

    .about-page .equal-height-boxes .service-box img,
    .profile-card-image {
        height: 260px;
    }

    .content-heading {
        margin-left: 0;
        margin-right: 0;
        font-size: 22px;
    }

    .text-section h3.content-heading {
        font-size: 22px;
    }

    .content-panel {
        padding: 18px 20px;
    }

    .content-panel ul {
        font-size: 17px;
        padding-left: 22px;
    }

    .content-break {
        margin: 28px 0;
        padding: 20px;
        text-align: left;
    }

    .content-break p {
        font-size: 20px;
    }

    .content-break .content-break-small {
        font-size: 17px;
    }

    .soft-start-panel {
        margin: 28px 0 8px;
        padding: 20px;
    }

    .soft-start-panel p {
        font-size: 17px;
    }

    .soft-start-panel .soft-start-title {
        font-size: 20px;
    }

    .about-page {
        padding-top: 16px;
    }

    .faq-section h2,
    .testimonial-section h2 {
        font-size: 22px;
        padding: 12px 16px;
        margin: 28px 0 20px;
    }

    .testimonial-slider {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .testimonial-slider::before,
    .testimonial-slider::after {
        display: none;
    }

    .slider-nav {
        margin-top: 20px;
    }

    .footer .container a,
    .footer-bottom a {
        padding: 6px 8px;
        margin: 2px 2px;
    }

    .faq-section {
        padding: 24px 0 30px;
    }

    .faq-section h3 {
        font-size: 20px;
    }

    .faq-section h3 label {
        padding: 14px 15px;
    }

    .faq-section h3 label::before {
        border-top-width: 7px;
        border-bottom-width: 7px;
        border-left-width: 11px;
        margin-right: 11px;
    }

    .faq-section .p p {
        font-size: 16px;
        line-height: 1.6;
        padding-left: 16px;
        padding-right: 16px;
    }

    .faq-section input[type="checkbox"]:checked ~ .p {
        max-height: 1100px;
    }
}


/* =========================================================
   Homepage route redesign - August 2026
   ========================================================= */

.homepage-main {
    padding-left: 20px;
    padding-right: 20px;
}

.homepage-section {
    margin: 0 0 42px;
    scroll-margin-top: 24px;
}

.homepage-section-heading {
    width: 100%;
    box-sizing: border-box;
}

/* Homepage section headings: keep H2 semantics without inheriting the larger generic H2 styling */
.text-section h2.homepage-section-heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    padding: 12px 18px;
}

.homepage-hero .text h2 {
    max-width: 660px;
}

.homepage-hero-actions,
.homepage-programme-actions,
.latest-writing-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.homepage-hero-actions .button-link,
.homepage-programme-actions .button-link,
.latest-writing-actions .button-link {
    margin: 0;
}

.homepage-secondary-button {
    background-color: var(--db-white);
    border-color: var(--db-dark-teal);
}

.homepage-secondary-button:hover,
.homepage-secondary-button:focus {
    background-color: var(--db-yellow);
    border-color: black;
}

.homepage-introduction-panel {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
}

.homepage-recognition-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.homepage-recognition-list li {
    background-color: var(--db-white);
    border-left: 7px solid var(--db-blue);
    padding: 16px 18px;
    margin: 0;
    line-height: 1.55;
    font-size: 18px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 12px;
}

.homepage-recognition-list li::before {
    content: "✓";
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--db-blue);
    color: var(--db-text);
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    box-sizing: border-box;
}

.homepage-centred-action {
    text-align: center;
    margin-top: 18px;
}

.homepage-centred-action .button-link {
    margin-bottom: 0;
}

.homepage-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding-top: 20px;
}

.homepage-service-card {
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.homepage-service-card h3 {
    background-color: var(--db-yellow);
    border-left: 9px solid var(--db-blue);
    padding: 11px 15px;
    margin: 0;
    min-height: 54px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    text-align: left;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.18;
}

.homepage-service-card p {
    padding: 18px 18px 8px;
    margin: 0;
    font-size: 17px;
    line-height: 1.6;
    flex: 1;
}

.homepage-service-card .button-link {
    align-self: center;
    width: calc(100% - 36px);
    height: 56px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    padding: 8px 14px;
    margin: 12px 18px 18px;
}

.homepage-reset-banner {
    background-color: var(--db-pale-blue);
    border: 1px solid var(--db-soft-border);
    border-left: 10px solid var(--db-yellow);
    box-shadow: var(--db-soft-shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: 24px 28px;
    margin: 0 0 42px;
    box-sizing: border-box;
}

.homepage-reset-banner h2 {
    padding: 0;
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 700;
}

.homepage-reset-banner p {
    padding: 0;
    margin: 0;
    line-height: 1.6;
    font-size: 18px;
}

.homepage-reset-banner .button-link {
    flex: 0 0 auto;
    margin: 0;
}

.homepage-programme-feature {
    background-color: #82BDB7;
    color: var(--db-text);
    border: 4px solid var(--db-yellow);
    box-shadow: var(--db-soft-shadow);
    padding: 30px;
    margin: 0 0 42px;
    box-sizing: border-box;
    text-align: left;
}

.homepage-programme-feature h2,
.homepage-programme-feature p {
    color: var(--db-text);
}

.homepage-programme-feature .homepage-eyebrow {
    color: var(--db-text);
}

.homepage-programme-feature .facts-strip li {
    background-color: var(--db-white);
    color: var(--db-text);
    border-color: var(--db-blue);
}

.homepage-programme-feature .button-link {
    background-color: var(--db-yellow);
    border-color: var(--db-yellow);
    color: var(--db-text);
}

.homepage-programme-feature .button-link:hover,
.homepage-programme-feature .button-link:focus {
    background-color: var(--db-white);
    border-color: var(--db-white);
    color: var(--db-text);
}

.homepage-programme-feature .homepage-secondary-button {
    background-color: var(--db-white);
    border-color: var(--db-white);
    color: var(--db-text);
}

.homepage-programme-feature .homepage-secondary-button:hover,
.homepage-programme-feature .homepage-secondary-button:focus {
    background-color: var(--db-yellow);
    border-color: var(--db-yellow);
}

.homepage-programme-copy {
    max-width: 1050px;
    margin: 0 auto;
}

.homepage-eyebrow {
    color: var(--db-dark-teal);
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0 !important;
    margin: 0 0 6px !important;
}

.homepage-programme-feature h2 {
    padding: 0;
    margin: 0 0 12px;
    font-size: 34px;
    font-weight: 700;
}

.homepage-programme-feature p {
    padding: 0;
    font-size: 18px;
    line-height: 1.65;
}

.homepage-programme-intro {
    font-size: 20px !important;
}

.facts-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.facts-strip li {
    background-color: var(--db-white);
    border: 1px solid var(--db-soft-border);
    padding: 8px 11px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.homepage-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding-top: 20px;
}

.homepage-profile-card {
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.homepage-profile-card > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.homepage-profile-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
    text-align: left;
}

.homepage-profile-content h3 {
    margin: 0 0 8px;
    font-size: 25px;
    text-align: left;
}

.homepage-profile-content p {
    padding: 0;
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.6;
    flex: 1;
}

.homepage-profile-content .button-link {
    align-self: flex-start;
    margin: 10px 0 0;
}

.homepage-section-intro {
    max-width: 820px;
    margin: 18px auto 0;
    padding: 0 20px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

.latest-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding-top: 20px;
}

.latest-post-card {
    background-color: var(--db-white);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.latest-post-card > img {
    width: 100%;
    aspect-ratio: 3 / 2;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.latest-post-content {
    padding: 18px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.latest-post-category {
    color: var(--db-dark-teal);
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0 !important;
    margin: 0 0 6px !important;
}

.latest-post-content h3 {
    font-size: 22px;
    line-height: 1.25;
    text-align: left;
    margin: 0 0 10px;
}

.latest-post-content p:not(.latest-post-category) {
    padding: 0;
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.55;
    flex: 1;
}

.latest-post-link,
.homepage-text-link {
    color: var(--db-dark-teal);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.latest-post-link:hover,
.latest-post-link:focus,
.homepage-text-link:hover,
.homepage-text-link:focus {
    color: black;
    background-color: var(--db-yellow);
}

.latest-writing-actions {
    margin-top: 22px;
}

.final-homepage-cta {
    background-color: var(--db-pale-blue);
    border-top: 6px solid var(--db-yellow);
    padding: 28px;
    margin: 10px 0 34px;
    text-align: center;
    box-sizing: border-box;
}

.final-homepage-cta h2 {
    padding: 0;
    margin: 0 0 10px;
    font-size: 30px;
    text-align: center;
}

.final-homepage-cta p {
    max-width: 780px;
    margin: 0 auto 12px;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 980px) {
    .homepage-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .latest-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .latest-post-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 10px);
        width: 100%;
        justify-self: center;
    }
}

@media (max-width: 700px) {
    .text-section h2.homepage-section-heading {
        font-size: 21px;
        padding: 11px 14px;
    }

    .homepage-main {
        padding-left: 14px;
        padding-right: 14px;
    }

    .homepage-hero-actions,
    .homepage-programme-actions,
    .latest-writing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .homepage-hero-actions .button-link,
    .homepage-programme-actions .button-link,
    .latest-writing-actions .button-link {
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }

    .homepage-recognition-list,
    .homepage-service-grid,
    .homepage-profile-grid,
    .latest-post-grid {
        grid-template-columns: 1fr;
    }

    .latest-post-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .homepage-reset-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 22px 20px;
    }

    .homepage-reset-banner .button-link {
        align-self: center;
    }

    .homepage-programme-feature {
        padding: 22px 20px;
    }

    .homepage-programme-feature h2 {
        font-size: 28px;
    }

    .homepage-profile-card > img,
    .latest-post-card > img {
        aspect-ratio: 16 / 10;
    }

    .facts-strip {
        gap: 6px;
    }

    .facts-strip li {
        width: 100%;
        box-sizing: border-box;
    }
}



/* =========================================================
   COACHING PAGE - SECTION 2 REORGANISATION
   ========================================================= */

.coaching-intro-section,
.coaching-boundary-section,
.coaching-final-cta-section {
    padding-top: 0;
}

.coaching-programmes {
    max-width: 920px;
    margin: 24px auto 38px;
    text-align: left;
}

.coaching-programmes-intro {
    max-width: 760px;
    margin: 0 auto 22px;
    padding: 0 20px;
    text-align: center;
    font-size: 18px;
    line-height: 1.65;
}

.coaching-programme {
    margin-bottom: 14px;
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    background-color: var(--db-cream);
}

.coaching-programme summary {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 76px;
    padding: 14px 20px;
    box-sizing: border-box;
    cursor: pointer;
    list-style: none;
    background-color: var(--db-yellow);
    border-left: 10px solid var(--db-blue);
    color: var(--db-text);
}

.coaching-programme-featured summary {
    border-left-color: var(--db-dark-teal);
}

.coaching-programme summary::-webkit-details-marker {
    display: none;
}

.coaching-programme summary:focus-visible {
    outline: 3px solid var(--db-dark-teal);
    outline-offset: 3px;
}

.coaching-programme-title {
    flex: 1 1 auto;
    min-width: 0;
}

.coaching-programme-title strong {
    display: block;
    font-size: 23px;
    line-height: 1.2;
}

.coaching-programme-title span {
    display: block;
    margin-top: 4px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
}

.coaching-programme-summary-badge {
    flex: 0 0 auto;
    padding: 5px 8px;
    background-color: var(--db-pale-blue);
    border: 1px solid var(--db-dark-teal);
    color: var(--db-dark-teal);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}

.coaching-programme-price {
    flex: 0 0 auto;
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.coaching-programme-icon {
    position: relative;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    border: 2px solid var(--db-dark-teal);
    border-radius: 50%;
}

.coaching-programme-icon::before,
.coaching-programme-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background-color: var(--db-dark-teal);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.coaching-programme-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.coaching-programme[open] .coaching-programme-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.coaching-programme-body {
    padding: 24px 28px 26px;
    border-top: 1px solid var(--db-soft-border);
    background-color: var(--db-cream);
}

.coaching-programme-body p,
.coaching-programme-body ul {
    margin-top: 0;
    font-size: 18px;
    line-height: 1.65;
}

.coaching-programme-body ul {
    padding-left: 24px;
    margin-bottom: 18px;
}

.coaching-programme-body li {
    margin-bottom: 8px;
}

.coaching-programme-body .button-link {
    margin: 8px 0 0;
}

.coaching-options-note {
    max-width: 920px;
    margin: 0 auto 34px;
    text-align: center;
}

.coaching-options-note p {
    padding: 0;
    font-size: 17px;
    line-height: 1.6;
}

.coaching-group-programme {
    margin-top: 0;
}

.button-link-secondary {
    background-color: white;
    border-color: var(--db-blue);
}

.button-link-secondary:hover,
.button-link-secondary:focus {
    background-color: var(--db-yellow);
    border-color: black;
}

.coaching-testimonials-section {
    background-color: white;
}

.coaching-testimonials {
    padding-top: 8px;
    padding-bottom: 28px;
}

.testimonial-card-grid,
.testimonial-more-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.testimonial-card {
    background-color: var(--db-pale-blue);
    border: 1px solid var(--db-soft-border);
    border-top: 7px solid var(--db-blue);
    padding: 24px;
    box-sizing: border-box;
    height: 100%;
}

.testimonial-card h3 {
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 16px;
    text-align: left;
}

.testimonial-card blockquote {
    margin: 0;
    padding: 0;
}

.testimonial-card blockquote p {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    text-align: left;
}

.testimonial-card blockquote p::before {
    content: "\201C";
    font-size: 34px;
    line-height: 0;
    vertical-align: -8px;
    margin-right: 4px;
    font-weight: 700;
}

.testimonial-card blockquote p::after {
    content: "\201D";
    font-size: 34px;
    line-height: 0;
    vertical-align: -8px;
    margin-left: 4px;
    font-weight: 700;
}

.testimonial-more {
    margin-top: 24px;
}

.testimonial-more summary {
    display: inline-block;
    cursor: pointer;
    background-color: var(--db-blue);
    border: 2px solid var(--db-blue);
    color: black;
    font-weight: 700;
    padding: 10px 18px;
    margin: 0 auto;
}

.testimonial-more summary:hover,
.testimonial-more summary:focus {
    background-color: var(--db-yellow);
    border-color: black;
    outline-offset: 3px;
}

.testimonial-more[open] summary {
    margin-bottom: 24px;
}

.testimonial-more-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.coaching-boundary-section .content-panel {
    margin-bottom: 0;
}

.coaching-faq-wrapper {
    padding-top: 18px;
}

.coaching-final-cta-section .about-page {
    padding-top: 0;
}

.coaching-final-cta {
    margin-top: 12px;
}

@media (max-width: 900px) {
    .testimonial-card-grid,
    .testimonial-more-grid {
        grid-template-columns: 1fr;
    }

    .coaching-programme summary {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px 14px;
        align-items: center;
    }

    .coaching-programme-title {
        grid-column: 1 / -1;
    }

    .coaching-programme-summary-badge {
        grid-column: 1;
        justify-self: start;
    }

    .coaching-programme-price {
        grid-column: 1;
        justify-self: start;
    }

    .coaching-programme-summary-badge + .coaching-programme-price {
        grid-column: 2;
        justify-self: end;
    }

    .coaching-programme-icon {
        grid-column: 2;
        grid-row: 2;
        justify-self: end;
    }

    .coaching-programme-summary-badge ~ .coaching-programme-icon {
        grid-row: 3;
    }
}

@media (max-width: 700px) {
    .coaching-programmes-intro {
        padding: 0;
        font-size: 17px;
    }

    .coaching-programme summary {
        padding: 14px;
    }

    .coaching-programme-title strong {
        font-size: 20px;
    }

    .coaching-programme-title span {
        font-size: 15px;
    }

    .coaching-programme-price {
        font-size: 17px;
    }

    .coaching-programme-body {
        padding: 20px;
    }

    .coaching-programme-body p,
    .coaching-programme-body ul {
        font-size: 16px;
    }
}


/* =========================================================
   COACHING PAGE - VISUAL REFINEMENT
   Calm, professional and highly scannable
   ========================================================= */

/* Recognition list: strong visual scanning */
.coaching-check-list {
    list-style: none;
    margin: 18px 0 20px;
    padding: 0 !important;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.coaching-check-list li {
    position: relative;
    margin: 0 !important;
    padding: 14px 16px 14px 52px;
    min-height: 54px;
    display: flex;
    align-items: center;
    background-color: var(--db-white);
    border: 1px solid var(--db-soft-border);
    box-sizing: border-box;
    line-height: 1.5;
}

.coaching-check-list li::before {
    content: "✓";
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--db-blue);
    color: var(--db-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    border-radius: 50%;
}

/* Coaching with Sonay: retain genuine bullets, but make them lighter and more deliberate */
.coaching-simple-list {
    margin: 16px 0 20px;
    padding: 16px 24px 16px 46px !important;
    background-color: var(--db-pale-blue);
    border-left: 5px solid var(--db-blue);
    box-sizing: border-box;
}

.coaching-simple-list li {
    margin: 0 0 10px;
    padding-left: 4px;
    line-height: 1.55;
}

.coaching-simple-list li:last-child {
    margin-bottom: 0;
}

.coaching-simple-list li::marker {
    color: var(--db-dark-teal);
    font-size: 1.15em;
}

/* Credentials strip: white, restrained and professional */
.coaching-credibility-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 8px 0 34px;
    background-color: var(--db-white);
    border: 1px solid var(--db-soft-border);
    border-top: 4px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
}

.coaching-credibility-item {
    min-width: 0;
    padding: 18px 16px;
    text-align: center;
    box-sizing: border-box;
    position: relative;
}

.coaching-credibility-item + .coaching-credibility-item {
    border-left: 1px solid var(--db-soft-border);
}

.coaching-credibility-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.2;
    color: var(--db-dark-teal);
}

.coaching-credibility-item span {
    display: block;
    font-size: 14px;
    line-height: 1.35;
    color: var(--db-text);
}

/* Options introduction: informative, but quiet */
.coaching-programmes-intro {
    max-width: 1080px;
    margin: 12px auto 22px;
    padding: 16px 20px;
    text-align: left;
    background-color: var(--db-pale-blue);
    border-left: 6px solid var(--db-blue);
    box-sizing: border-box;
}

.coaching-programmes-intro p {
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 1.5;
}

.coaching-programmes-intro p:first-child {
    margin-bottom: 3px;
    font-size: 19px;
}

/* Coaching options: wide stacked white cards, teal structure, minimal yellow */
.coaching-programmes {
    width: 100%;
    max-width: 1080px;
    margin: 22px auto 34px;
}

.coaching-programme {
    width: 100%;
    margin-bottom: 14px;
    background-color: var(--db-white);
    border: 2px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
}

.coaching-programme-featured {
    border-color: var(--db-dark-teal);
}

.coaching-programme summary {
    min-height: 80px;
    padding: 15px 18px;
    background-color: var(--db-white);
    border-left: 6px solid var(--db-blue);
    color: var(--db-text);
}

.coaching-programme-featured summary {
    border-left-color: var(--db-dark-teal);
}

.coaching-programme summary:hover {
    background-color: var(--db-pale-blue);
}

.coaching-programme summary:focus-visible {
    outline: 3px solid var(--db-dark-teal);
    outline-offset: 3px;
}

.coaching-programme-title strong {
    color: var(--db-dark-teal);
}

.coaching-programme-summary-badge {
    background-color: var(--db-yellow);
    border: 1px solid var(--db-dark-teal);
    color: var(--db-text);
    font-size: 12px;
    padding: 5px 8px;
}

.coaching-programme-price {
    padding: 7px 10px;
    background-color: var(--db-pale-blue);
    border: 1px solid var(--db-blue);
    color: var(--db-text);
    box-sizing: border-box;
}

.coaching-programme-icon {
    border-color: var(--db-dark-teal);
}

.coaching-programme-icon::before,
.coaching-programme-icon::after {
    background-color: var(--db-dark-teal);
}

.coaching-programme-body {
    padding: 24px 28px 26px;
    background-color: var(--db-white);
    border-top: 1px solid var(--db-soft-border);
}

/* Programme-body inclusions: readable single-column rows */
.coaching-programme-body .coaching-programme-list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 14px 0 20px;
}

.coaching-programme-body .coaching-programme-list li {
    min-height: 46px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--db-pale-blue);
    border-color: rgba(153, 204, 204, 0.55);
}

/* Payment / funding: neat and restrained */
.coaching-funding-panel {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto 36px;
    padding: 0;
    box-sizing: border-box;
}

.coaching-funding-panel > h3 {
    margin: 0;
    padding: 10px 15px;
    background-color: var(--db-yellow);
    border-left: 7px solid var(--db-blue);
    font-size: 21px;
    font-weight: 700;
    text-align: left;
    box-sizing: border-box;
}

.coaching-funding-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-top: 14px;
}

.coaching-funding-card {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 108px;
    padding: 18px;
    background-color: var(--db-white);
    border: 1px solid var(--db-soft-border);
    border-top: 4px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    text-align: left;
    box-sizing: border-box;
}

.coaching-funding-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--db-blue);
    color: var(--db-text);
    border-radius: 50%;
    font-size: 19px;
    font-weight: 700;
}

.coaching-funding-card h4 {
    margin: 0 0 5px;
    font-size: 19px;
    line-height: 1.2;
    color: var(--db-dark-teal);
}

.coaching-funding-card p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
}

.coaching-group-programme {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .coaching-credibility-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coaching-credibility-item:nth-child(3) {
        border-left: none;
        border-top: 1px solid var(--db-soft-border);
    }

    .coaching-credibility-item:nth-child(4) {
        border-top: 1px solid var(--db-soft-border);
    }
}

@media (max-width: 700px) {
    .coaching-check-list,
    .coaching-funding-grid,
    .coaching-credibility-strip {
        grid-template-columns: 1fr;
    }

    .coaching-check-list li {
        min-height: 0;
    }

    .coaching-simple-list {
        padding: 15px 18px 15px 38px !important;
    }

    .coaching-credibility-item + .coaching-credibility-item {
        border-left: none;
        border-top: 1px solid var(--db-soft-border);
    }

    .coaching-programmes-intro {
        padding: 15px 16px;
    }

    .coaching-programmes-intro p:first-child {
        font-size: 18px;
    }

    .coaching-funding-card {
        min-height: 0;
        align-items: flex-start;
    }
}


/* Why work with Sonay: structured list without bullets or separate cards */
.why-sonay-panel {
    padding: 0;
    overflow: hidden;
}

.why-sonay-item {
    display: grid;
    grid-template-columns: minmax(190px, 0.8fr) minmax(0, 2fr);
    gap: 24px;
    align-items: start;
    padding: 20px 24px;
    box-sizing: border-box;
}

.why-sonay-item + .why-sonay-item {
    border-top: 1px solid var(--db-soft-border);
}

.why-sonay-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-sonay-marker {
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    background-color: var(--db-blue);
    border: 2px solid var(--db-dark-teal);
    box-sizing: border-box;
}

.why-sonay-label h4 {
    margin: 0;
    color: var(--db-dark-teal);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
}

.why-sonay-item p {
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .why-sonay-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 18px 20px;
    }
}


/* =========================================================
   ADHD MUMS PAGE - VISUAL REFINEMENT
   Calm, warm and scannable, matching the approved Coaching page
   ========================================================= */

.mums-check-list {
    list-style: none;
    margin: 18px 0 20px;
    padding: 0 !important;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mums-check-list li {
    position: relative;
    margin: 0 !important;
    padding: 14px 16px 14px 52px;
    min-height: 54px;
    display: flex;
    align-items: center;
    background-color: var(--db-white);
    border: 1px solid var(--db-soft-border);
    box-sizing: border-box;
    line-height: 1.5;
}

.mums-check-list li::before {
    content: "✓";
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--db-blue);
    color: var(--db-text);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.mums-empathy-break {
    margin: 8px 0 34px;
    padding: 18px 22px;
    background-color: var(--db-pale-blue);
    border-left: 6px solid var(--db-blue);
    border-top: 2px solid var(--db-yellow);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
    text-align: center;
}

.mums-empathy-break p {
    margin: 0;
    padding: 0;
    font-size: 19px;
    line-height: 1.5;
    font-weight: 700;
}

.mums-coaching-panel {
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
}

.mums-support-grid {
    width: 100%;
    max-width: 1080px;
    margin: 22px auto 38px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.mums-support-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
    text-align: left;
}

.mums-support-card-primary {
    border-color: var(--db-soft-border);
}

.mums-support-card h4 {
    margin: 0;
    padding: 13px 16px;
    min-height: 54px;
    display: flex;
    align-items: center;
    background-color: var(--db-pale-blue);
    border-left: 6px solid var(--db-blue);
    color: var(--db-dark-teal);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    box-sizing: border-box;
}

.mums-support-card-primary h4 {
    border-left-color: var(--db-blue);
}

.mums-reset-card h4::after {
    content: "Group coaching";
    margin-left: auto;
    padding: 4px 7px;
    background-color: var(--db-yellow);
    border: 1px solid var(--db-blue);
    color: var(--db-text);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mums-support-card p {
    margin: 0;
    padding: 12px 18px 0;
    font-size: 17px;
    line-height: 1.6;
    color: var(--db-text);
}

.mums-support-card p:last-of-type {
    padding-bottom: 6px;
}

.mums-support-card a:not(.button-link) {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--db-blue);
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
}

.mums-card-action {
    margin-top: auto;
    padding: 18px;
    text-align: center;
}

.mums-card-action .button-link {
    width: 100%;
    min-height: 52px;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mums-boundary-panel {
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
}

.mums-why-panel {
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
}

@media (max-width: 700px) {
    .mums-check-list,
    .mums-support-grid {
        grid-template-columns: 1fr;
    }

    .mums-check-list li {
        min-height: 0;
    }

    .mums-empathy-break {
        text-align: left;
        padding: 16px 18px;
    }

    .mums-empathy-break p {
        font-size: 18px;
    }

    .mums-reset-card h4 {
        flex-wrap: wrap;
        gap: 8px;
    }

    .mums-reset-card h4::after {
        margin-left: 0;
    }
}

/* ADHD Mum personal story: keep it within the approved cream/teal page language */
.mums-story-panel {
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
}

.mums-story-points {
    margin: 18px 0;
    padding: 16px 18px;
    background-color: var(--db-pale-blue);
    border-left: 5px solid var(--db-blue);
    box-sizing: border-box;
}

.mums-story-points p {
    position: relative;
    margin: 0 0 10px;
    padding: 0 0 0 18px;
    font-weight: 600;
    line-height: 1.5;
}

.mums-story-points p:last-child {
    margin-bottom: 0;
}

.mums-story-points p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    transform: translateY(-50%);
    background-color: var(--db-dark-teal);
}

.mums-story-closing {
    margin-top: 20px !important;
    padding: 16px 18px !important;
    background-color: var(--db-pale-blue);
    border-left: 5px solid var(--db-blue);
    line-height: 1.55 !important;
}


/* =========================================================
   SPEAKING PAGE - TOPIC LIST
   Real bullets with the same calm visual language used elsewhere
   ========================================================= */

.speaking-topic-list {
    margin: 18px 0 4px;
    padding: 18px 22px 18px 46px !important;
    background-color: var(--db-pale-blue);
    border-left: 5px solid var(--db-blue);
    box-sizing: border-box;
    columns: 2;
    column-gap: 42px;
}

.speaking-topic-list li {
    break-inside: avoid;
    margin: 0 0 12px;
    padding-left: 4px;
    font-size: 17px;
    line-height: 1.5;
}

.speaking-topic-list li::marker {
    color: var(--db-dark-teal);
    font-size: 1.2em;
}

@media (max-width: 700px) {
    .speaking-topic-list {
        columns: 1;
        padding: 16px 20px 16px 38px !important;
    }

    .speaking-topic-list li {
        font-size: 16px;
    }
}



/* =========================================================
   ADHD MUMS PAGE - FINAL SALES JOURNEY REFINEMENT
   ========================================================= */

.mums-provider-panel {
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
}

.mums-provider-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 14px;
    margin-top: 18px;
    text-align: center;
}

.mums-provider-actions .button-link {
    width: 260px;
    min-height: 52px;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mums-section-intro {
    max-width: 820px;
    margin: 16px auto 0;
    padding: 0 20px;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
}

.mums-paid-support-grid {
    margin-top: 18px;
}

.mums-paid-support-grid .mums-support-card {
    border-top: 4px solid var(--db-blue);
}

.mums-paid-support-grid .mums-support-card h4 {
    font-size: 23px;
}

.mums-secondary-support-grid {
    margin-top: 18px;
}

.mums-secondary-support-grid .mums-support-card {
    box-shadow: none;
    border-color: rgba(153, 204, 204, 0.62);
}

.mums-secondary-support-grid .mums-support-card h4 {
    background-color: var(--db-pale-blue);
    font-size: 21px;
}

@media (max-width: 700px) {
    .mums-provider-actions .button-link {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .mums-section-intro {
        padding: 0;
        font-size: 17px;
        text-align: left;
    }
}



/* =========================================================
   ADHD MUM RESET - DEDICATED PROGRAMME PAGE
   ========================================================= */

.mum-reset-page {
    padding-bottom: 10px;
}

.text-section h2.mum-reset-section-heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    padding: 12px 18px;
}

.mum-reset-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.mum-reset-hero-actions .button-link {
    margin: 0;
    min-width: 220px;
    box-sizing: border-box;
    text-align: center;
}

.mum-reset-facts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.mum-reset-facts > div {
    min-width: 0;
    padding: 16px 14px;
    background-color: var(--db-pale-blue);
    border: 1px solid var(--db-soft-border);
    border-top: 4px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    text-align: center;
    box-sizing: border-box;
}

.mum-reset-facts strong,
.mum-reset-facts span {
    display: block;
}

.mum-reset-facts strong {
    margin-bottom: 5px;
    color: var(--db-dark-teal);
    font-size: 18px;
    line-height: 1.2;
}

.mum-reset-facts span {
    font-size: 15px;
    line-height: 1.35;
}

.mum-reset-date-panel {
    margin-top: 16px;
    background-color: var(--db-cream);
}

.mum-reset-weeks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 20px 0 34px;
}

.mum-reset-week-card {
    position: relative;
    padding: 24px 22px 22px;
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    border-top: 5px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
}

.mum-reset-week-card-final {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px);
    width: 100%;
    justify-self: center;
    border-top-color: var(--db-dark-teal);
}

.mum-reset-week-number {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 8px;
    background-color: var(--db-yellow);
    border: 1px solid var(--db-blue);
    color: var(--db-text);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mum-reset-week-card h3 {
    margin: 0 0 10px;
    color: var(--db-dark-teal);
    font-size: 22px;
    font-weight: 700;
    text-align: left;
}

.mum-reset-week-card p {
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 1.6;
}

.mum-reset-included-list {
    margin: 0;
}

.mum-reset-price-panel {
    margin: 34px 0 18px;
    padding: 28px;
    background-color: #82BDB7;
    border: 4px solid var(--db-yellow);
    box-shadow: var(--db-soft-shadow);
    text-align: center;
    box-sizing: border-box;
}

.mum-reset-price-panel .homepage-eyebrow {
    margin-bottom: 6px !important;
}

.mum-reset-price-panel h2 {
    margin: 0 0 4px;
    padding: 0;
    color: var(--db-text);
    font-size: 42px;
    font-weight: 700;
    text-align: center;
}

.mum-reset-price-panel p {
    margin: 4px 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.5;
}

.mum-reset-price-panel .button-link {
    margin-top: 18px;
    margin-bottom: 0;
}

.mum-reset-faq {
    padding-top: 22px;
}

.mum-reset-final-cta {
    margin-top: 14px;
}

.mums-reset-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.mums-reset-card-actions .button-link {
    width: 100%;
}

.mums-reset-card-actions .homepage-text-link {
    align-self: center;
}

@media (max-width: 900px) {
    .mum-reset-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .mum-reset-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .mum-reset-hero-actions .button-link {
        width: 100%;
        min-width: 0;
    }

    .mum-reset-facts,
    .mum-reset-weeks {
        grid-template-columns: 1fr;
    }

    .mum-reset-week-card-final {
        grid-column: auto;
        max-width: none;
    }

    .mum-reset-price-panel {
        padding: 22px 18px;
    }
}



/* ADHD Mums paid-support intro
   Mirrors the full-width section-intro treatment used on the organisations page. */
.mums-section-intro-panel {
    width: 100%;
    max-width: none;
    margin: 16px 0 18px;
    padding: 14px 18px;
    background-color: var(--db-pale-blue);
    border-left: 6px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
    text-align: center;
}

.mums-section-intro-panel p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.55;
    font-weight: 400;
}

/* ADHD Mum Reset card: equal side-by-side actions */
.mums-reset-card-actions {
    flex-direction: row;
    gap: 12px;
    align-items: stretch;
}

.mums-reset-card-actions .button-link {
    flex: 1 1 0;
    width: auto;
    min-height: 54px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 700px) {
    .mums-section-intro-panel {
        text-align: left;
        padding: 14px 16px;
    }

    .mums-section-intro-panel p {
        font-size: 17px;
    }

    .mums-reset-card-actions {
        flex-direction: column;
    }

    .mums-reset-card-actions .button-link {
        width: 100%;
    }
}



/* =========================================================
   SERVICES PAGE - RESTRUCTURED ROUTES
   ========================================================= */

.services-page-intro {
    width: 100%;
    max-width: none;
    margin: 16px 0 4px;
    padding: 15px 20px;
    background-color: var(--db-pale-blue);
    border-left: 6px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
    text-align: center;
}

.services-page-intro p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.55;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 22px 0 38px;
}

.services-page-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
    overflow: hidden;
}

.services-page-card h4 {
    margin: 0;
    padding: 13px 16px;
    min-height: 56px;
    display: flex;
    align-items: center;
    background-color: var(--db-pale-blue);
    border-left: 7px solid var(--db-blue);
    color: var(--db-dark-teal);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    box-sizing: border-box;
}

.services-page-card p {
    margin: 0;
    padding: 14px 18px 0;
    font-size: 17px;
    line-height: 1.6;
}

.services-page-card p + p {
    padding-top: 10px;
}

.services-page-card-action {
    margin-top: auto;
    padding: 20px 18px 18px;
}

.services-page-card-action .button-link {
    width: 100%;
    min-height: 54px;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.services-page-card-organisations {
    border-top: 4px solid var(--db-yellow);
}

.services-page-card-organisations h4 {
    border-left-color: var(--db-dark-teal);
}

.services-final-cta {
    margin-top: 12px;
}

@media (max-width: 700px) {
    .services-page-intro {
        text-align: left;
        padding: 14px 16px;
    }

    .services-page-intro p {
        font-size: 17px;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
    }
}



/* =========================================================
   FOR ORGANISATIONS PAGE
   ========================================================= */

.organisations-section-intro {
    width: 100%;
    margin: 16px 0 18px;
    padding: 14px 18px;
    background-color: var(--db-pale-blue);
    border-left: 6px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
    text-align: center;
}

.organisations-section-intro p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.55;
}

.organisations-people-grid {
    margin-top: 0;
    margin-bottom: 36px;
}

.organisations-wide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 36px;
}

.organisations-credibility-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 20px 0 36px;
}

.organisations-credibility-group {
    padding: 22px;
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
}

.organisations-credibility-group h4 {
    margin: 0 0 14px;
    color: var(--db-dark-teal);
    font-size: 24px;
    font-weight: 700;
}

.organisations-credibility-facts {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 16px;
}

.organisations-credibility-facts span {
    flex: 0 1 auto;
    padding: 7px 8px;
    background-color: var(--db-pale-blue);
    border: 1px solid var(--db-soft-border);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.organisations-credibility-group p {
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 1.6;
}

.organisations-pathway {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
    margin: 20px 0 36px;
}

.organisations-pathway-step {
    padding: 20px;
    background-color: var(--db-pale-blue);
    border: 1px solid var(--db-soft-border);
    border-top: 5px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
}

.organisations-pathway-step h4 {
    margin: 0 0 8px;
    color: var(--db-dark-teal);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.organisations-pathway-step p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.55;
}

.organisations-pathway-arrow {
    align-self: center;
    color: var(--db-dark-teal);
    font-size: 30px;
    font-weight: 700;
}

.organisations-practical-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 20px 0 36px;
}

.organisations-practical-card {
    padding: 22px;
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
}

.organisations-practical-card h4 {
    margin: 0 0 12px;
    color: var(--db-dark-teal);
    font-size: 21px;
    font-weight: 700;
}

.organisations-practical-card p {
    margin: 0 0 12px;
    padding: 0;
    font-size: 17px;
    line-height: 1.6;
}

.organisations-practical-card p:last-child {
    margin-bottom: 0;
}

.organisations-final-cta {
    margin-top: 34px;
}

@media (max-width: 900px) {
    .organisations-pathway {
        grid-template-columns: 1fr;
    }

    .organisations-pathway-arrow {
        transform: rotate(90deg);
        justify-self: center;
    }
}

@media (max-width: 700px) {
    .organisations-credibility-facts {
        flex-wrap: wrap;
    }

    .organisations-credibility-facts span {
        white-space: normal;
    }

    .organisations-section-intro {
        text-align: left;
        padding: 14px 16px;
    }

    .organisations-section-intro p {
        font-size: 17px;
    }

    .organisations-wide-grid,
    .organisations-credibility-strip,
    .organisations-practical-grid {
        grid-template-columns: 1fr;
    }
}



/* =========================================================
   SHARED FOOTER
   ========================================================= */

.footer-main-inner,
.footer-legal-inner {
    box-sizing: border-box;
}

.footer-main-inner {
    padding-top: 6px;
    padding-bottom: 8px;
}

.footer-copyright {
    margin: 2px 0 8px;
    padding: 0;
    font-weight: 700;
}

.footer-service-links,
.footer-social-links,
.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.footer-service-links {
    margin: 0 0 4px;
}

.footer-service-links a {
    font-size: 15px;
}

.footer-social-links {
    margin-top: 2px;
}

.footer-social-links a {
    font-size: 15px;
}

.footer-company-details,
.footer-registered-office {
    margin: 0;
    padding: 0 18px;
    line-height: 1.45;
    text-align: center;
}

.footer-company-details {
    font-size: 14px;
    margin-bottom: 2px;
}

.footer-company-details span {
    display: inline-block;
    margin: 0 5px;
}

.footer-registered-office {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 5px;
}

.footer-legal-links span {
    margin: 0 2px;
}

.footer-legal-links a {
    font-size: 14px;
}

@media (max-width: 700px) {
    .footer-service-links,
    .footer-social-links,
    .footer-legal-links {
        row-gap: 2px;
    }

    .footer-service-links {
        padding: 0 8px;
    }

    .footer-service-links a,
    .footer-social-links a,
    .footer-legal-links a {
        font-size: 14px;
    }

    .footer-company-details,
    .footer-registered-office {
        padding-left: 12px;
        padding-right: 12px;
    }

    .footer-company-details {
        font-size: 13px;
    }

    .footer-registered-office {
        font-size: 12px;
    }
}



/* =========================================================
   ASSISTIVE TECHNOLOGY PAGE - VISUAL RESTRUCTURE
   ========================================================= */

.at-purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 20px 0 36px;
}

.at-purpose-card {
    padding: 20px;
    background-color: var(--db-pale-blue);
    border: 1px solid var(--db-soft-border);
    border-top: 5px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
}

.at-purpose-card h4 {
    margin: 0 0 9px;
    color: var(--db-dark-teal);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.at-purpose-card p {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.55;
}

.at-credibility-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 20px 0 18px;
}

.at-credibility-item {
    padding: 14px 12px;
    background-color: var(--db-pale-blue);
    border: 1px solid var(--db-soft-border);
    text-align: center;
    box-sizing: border-box;
}

.at-credibility-item strong,
.at-credibility-item span {
    display: block;
}

.at-credibility-item strong {
    margin-bottom: 4px;
    color: var(--db-dark-teal);
    font-size: 17px;
    line-height: 1.2;
}

.at-credibility-item span {
    font-size: 14px;
    line-height: 1.35;
}

.at-session-list {
    margin: 18px 0;
    padding: 16px 18px 16px 42px !important;
    background-color: var(--db-pale-blue);
    border-left: 5px solid var(--db-blue);
    box-sizing: border-box;
}

.at-session-list li {
    margin: 0 0 10px;
    padding-left: 3px;
    font-size: 17px;
    line-height: 1.5;
}

.at-session-list li:last-child {
    margin-bottom: 0;
}

.at-session-list li::marker {
    color: var(--db-dark-teal);
}

.at-options-intro {
    width: 100%;
    margin: 16px 0 18px;
    padding: 14px 18px;
    background-color: var(--db-pale-blue);
    border-left: 6px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    text-align: center;
    box-sizing: border-box;
}

.at-options-intro p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.55;
}

.at-options-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 36px;
}

.at-option-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
    overflow: hidden;
}

.at-option-card h4 {
    margin: 0;
    padding: 13px 16px;
    min-height: 58px;
    display: flex;
    align-items: center;
    background-color: var(--db-pale-blue);
    border-left: 7px solid var(--db-blue);
    color: var(--db-dark-teal);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    box-sizing: border-box;
}

.at-option-card ul {
    margin: 0;
    padding: 18px 24px 0 42px;
    font-size: 16px;
    line-height: 1.5;
}

.at-option-card li {
    margin-bottom: 9px;
}

.at-option-card li::marker {
    color: var(--db-dark-teal);
}

.at-option-action {
    margin-top: auto;
    padding: 20px 18px 18px;
}

.at-option-action .button-link {
    width: 100%;
    min-height: 54px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
}

.at-option-card-reset {
    border-top: 4px solid var(--db-yellow);
}

.at-option-card-reset h4 {
    border-left-color: var(--db-dark-teal);
}

.at-final-cta {
    margin-top: 32px;
}

@media (max-width: 900px) {
    .at-purpose-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .at-credibility-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .at-purpose-grid,
    .at-options-grid {
        grid-template-columns: 1fr;
    }

    .at-credibility-strip {
        grid-template-columns: 1fr;
    }

    .at-options-intro {
        text-align: left;
        padding: 14px 16px;
    }

    .at-options-intro p {
        font-size: 17px;
    }
}



/* =========================================================
   DIVERGENTLY RESET - UNDERSTAND / BUILD / EMBED
   ========================================================= */

.reset-process {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 12px;
    align-items: stretch;
    margin: 20px 0 36px;
}

.reset-process-card {
    position: relative;
    padding: 24px 20px 22px;
    background-color: var(--db-pale-blue);
    border: 1px solid var(--db-soft-border);
    border-top: 5px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
}

.reset-process-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.reset-process-number {
    display: flex;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-color: var(--db-yellow);
    border: 1px solid var(--db-dark-teal);
    color: var(--db-text);
    font-size: 17px;
    font-weight: 700;
}

.reset-process-card h4 {
    margin: 0;
    color: var(--db-dark-teal);
    font-size: 23px;
    font-weight: 700;
}

.reset-process-arrow {
    align-self: center;
    color: var(--db-dark-teal);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.reset-process-card p {
    margin: 0 0 10px;
    padding: 0;
    font-size: 16px;
    line-height: 1.55;
}

.reset-process-card p:last-child {
    margin-bottom: 0;
}

.reset-people-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 20px 0 36px;
}

.reset-person-card {
    display: flex;
    flex-direction: column;
    padding: 0 0 20px;
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
    overflow: hidden;
}

.reset-person-card h4 {
    margin: 0 0 18px;
    padding: 12px 16px;
    background-color: var(--db-yellow);
    border-left: 7px solid var(--db-blue);
    color: var(--db-text);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    box-sizing: border-box;
}

.reset-person-card p {
    margin: 0 0 12px;
    padding: 0 20px;
    font-size: 17px;
    line-height: 1.6;
}

.reset-person-action {
    margin-top: auto;
    padding: 10px 20px 0;
    text-align: center;
}

.reset-person-action .button-link {
    margin: 0;
    min-width: 220px;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.reset-recognition-list {
    list-style: none;
    margin: 0;
    padding: 16px 18px !important;
    background-color: var(--db-pale-blue);
    border-left: 5px solid var(--db-blue);
    box-sizing: border-box;
}

.reset-recognition-list li {
    position: relative;
    margin: 0 0 13px !important;
    padding: 0 0 0 20px;
    font-size: 17px;
    line-height: 1.55;
}

.reset-recognition-list li:last-child {
    margin-bottom: 0 !important;
}

.reset-recognition-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.78em;
    width: 7px;
    height: 7px;
    transform: translateY(-50%);
    background-color: var(--db-dark-teal);
}

.reset-support-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 20px 0 36px;
}

.reset-support-group {
    padding: 20px;
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    border-top: 5px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
}

.reset-support-group h4 {
    margin: 0 0 12px;
    color: var(--db-dark-teal);
    font-size: 20px;
    font-weight: 700;
}

.reset-support-group ul {
    margin: 0;
    padding-left: 22px;
    font-size: 16px;
    line-height: 1.5;
}

.reset-support-group li {
    margin-bottom: 8px;
}

.reset-support-group li:last-child {
    margin-bottom: 0;
}

.reset-support-group li::marker {
    color: var(--db-dark-teal);
}

.reset-final-cta {
    margin-top: 32px;
}

@media (max-width: 900px) {
    .reset-process {
        grid-template-columns: 1fr;
    }

    .reset-process-arrow {
        transform: rotate(90deg);
        justify-self: center;
    }
}

@media (max-width: 700px) {
    .reset-people-grid,
    .reset-support-groups {
        grid-template-columns: 1fr;
    }
}



/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {
    max-width: 1000px;
}

.contact-page-title {
    margin: 8px 0 20px;
    padding: 0;
    color: var(--db-text);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
}

.contact-intro-panel,
.contact-direct-note {
    width: 100%;
    margin: 0 0 24px;
    padding: 18px 22px;
    background-color: var(--db-pale-blue);
    border-left: 6px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
}

.contact-intro-panel p,
.contact-direct-note p {
    margin: 0 0 10px;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
}

.contact-intro-panel p:last-child,
.contact-direct-note p:last-child {
    margin-bottom: 0;
}

.contact-form {
    width: 100%;
    max-width: none;
    margin: 0 0 28px;
    padding: 26px;
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
    text-align: left;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.contact-field {
    min-width: 0;
}

.contact-field-full {
    margin-top: 20px;
}

.contact-field label {
    display: block;
    margin: 0 0 7px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.contact-optional {
    font-size: 14px;
    font-weight: 400;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 11px 12px;
    border: 2px solid var(--db-blue);
    border-radius: 0;
    background-color: var(--db-white);
    color: var(--db-text);
    font-family: 'proxima-nova', sans-serif;
    font-size: 17px;
    line-height: 1.4;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: 3px solid var(--db-yellow);
    outline-offset: 2px;
    border-color: var(--db-dark-teal);
}

.contact-field-help {
    margin: 7px 0 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.45;
}

.contact-consent {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 22px 0 0;
    padding: 16px;
    background-color: var(--db-pale-blue);
    border-left: 5px solid var(--db-blue);
}

.contact-consent input[type="checkbox"] {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin: 2px 0 0;
}

.contact-consent label {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.contact-consent a {
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: var(--db-blue);
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
}

.contact-submit {
    margin-top: 22px;
    text-align: center;
}

.contact-submit-button {
    min-width: 200px;
    margin: 0;
    font-family: 'proxima-nova', sans-serif;
    font-size: 17px;
    cursor: pointer;
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-thank-you-page {
    max-width: 850px;
    min-height: calc(100vh - 340px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.contact-thank-you-panel {
    text-align: left;
}

.contact-thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 22px 0 34px;
}

.contact-thank-you-actions .button-link {
    min-width: 220px;
    margin: 0;
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 700px) {
    .contact-page-title {
        font-size: 32px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-intro-panel,
    .contact-direct-note {
        padding: 16px 18px;
    }

    .contact-intro-panel p,
    .contact-direct-note p {
        font-size: 17px;
    }

    .contact-thank-you-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-thank-you-actions .button-link {
        width: 100%;
    }
}



/* =========================================================
   SPEAKING PAGE - COMMERCIAL FINISHING PASS
   ========================================================= */

.speaking-section-intro {
    width: 100%;
    margin: 16px 0 18px;
    padding: 14px 18px;
    background-color: var(--db-pale-blue);
    border-left: 6px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    text-align: center;
    box-sizing: border-box;
}

.speaking-section-intro p {
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.55;
}

.speaking-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 36px;
}

.speaking-media-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    overflow: hidden;
    box-sizing: border-box;
}

.speaking-media-card h4 {
    margin: 0;
    padding: 12px 16px;
    background-color: var(--db-yellow);
    border-left: 7px solid var(--db-blue);
    color: var(--db-text);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    box-sizing: border-box;
}

.speaking-media-context,
.speaking-enquiry-card p {
    margin: 0;
    padding: 14px 18px 0;
    font-size: 16px;
    line-height: 1.5;
}

.speaking-embed-wrap {
    margin-top: auto;
    padding: 16px 18px 18px;
}

.speaking-media-action {
    margin-top: auto;
    padding: 18px;
    text-align: center;
}

.speaking-media-action .button-link {
    margin: 0;
    min-width: 180px;
}

.speaking-enquiry-card {
    border-top: 4px solid var(--db-yellow);
}

.speaking-booking-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 20px 0 36px;
}

.speaking-booking-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 0 0 20px;
    background-color: var(--db-cream);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    overflow: hidden;
    box-sizing: border-box;
}

.speaking-booking-card h4 {
    margin: 0 0 16px;
    padding: 12px 16px;
    background-color: var(--db-yellow);
    border-left: 7px solid var(--db-blue);
    color: var(--db-text);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    box-sizing: border-box;
}

.speaking-booking-card p {
    margin: 0 0 12px;
    padding: 0 20px;
    font-size: 17px;
    line-height: 1.6;
}

.speaking-booking-card > p:first-of-type {
    height: 140px;
    min-height: 140px;
    box-sizing: border-box;
}

.speaking-booking-card ul {
    margin: 4px 20px 0;
    padding: 14px 18px 14px 38px;
    background-color: var(--db-pale-blue);
    border-left: 5px solid var(--db-blue);
    font-size: 16px;
    line-height: 1.5;
    box-sizing: border-box;
}

.speaking-booking-card li {
    margin-bottom: 8px;
}

.speaking-booking-card li:last-child {
    margin-bottom: 0;
}

.speaking-booking-card li::marker {
    color: var(--db-dark-teal);
}

.speaking-booking-action {
    margin-top: auto;
    padding: 18px 20px 0;
    text-align: center;
}

.speaking-booking-action .button-link {
    margin: 0;
    min-width: 220px;
    max-width: 100%;
    box-sizing: border-box;
}

.speaking-format-panel {
    margin-bottom: 34px;
}

.speaking-format-list {
    columns: 2;
    column-gap: 36px;
    margin: 16px 0;
    padding: 16px 18px 16px 42px !important;
    background-color: var(--db-pale-blue);
    border-left: 5px solid var(--db-blue);
    box-sizing: border-box;
}

.speaking-format-list li {
    break-inside: avoid;
    margin: 0 0 10px;
    padding-left: 3px;
    font-size: 16px;
    line-height: 1.5;
}

.speaking-format-list li::marker {
    color: var(--db-dark-teal);
}

.speaking-final-cta {
    margin-top: 28px;
}

@media (max-width: 700px) {
    .speaking-section-intro {
        text-align: left;
        padding: 14px 16px;
    }

    .speaking-section-intro p {
        font-size: 17px;
    }

    .speaking-media-grid,
    .speaking-booking-grid {
        grid-template-columns: 1fr;
    }

    .speaking-booking-card > p:first-of-type {
        height: auto;
        min-height: 0;
    }

    .speaking-format-list {
        columns: 1;
    }
}



/* =========================================================
   ABOUT PAGE - POSITIONING AND INTERNAL LINKS
   ========================================================= */

.about-profile-grid {
    margin-top: 20px;
}

.about-profile-card {
    display: flex;
    flex-direction: column;
}

.about-profile-role {
    min-height: 74px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.about-profile-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-profile-copy p {
    flex: 0 0 auto;
}

.about-profile-actions {
    margin-top: auto;
    padding: 12px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.about-profile-actions .button-link {
    width: 100%;
    max-width: 320px;
    min-height: 52px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
}

.about-profile-secondary-button {
    background-color: var(--db-white);
    border-color: var(--db-blue);
}

.about-profile-secondary-button:hover,
.about-profile-secondary-button:focus {
    background-color: var(--db-yellow);
    border-color: var(--db-text);
}

.about-together-panel {
    margin: 20px 0 34px;
    padding: 24px;
    background-color: var(--db-pale-blue);
    border: 1px solid var(--db-soft-border);
    border-left: 8px solid var(--db-blue);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
}

.about-together-panel > p {
    margin: 0 0 18px;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}

.about-together-panel .about-together-intro {
    max-width: 780px;
    margin: 0 auto 22px;
    padding: 12px 16px;
    background-color: var(--db-white);
    border-left: 6px solid var(--db-yellow);
    color: var(--db-dark-teal);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
}

.about-together-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-together-grid > div {
    display: flex;
    flex-direction: column;
    padding: 18px;
    background-color: var(--db-white);
    border: 1px solid var(--db-soft-border);
    box-sizing: border-box;
}

.about-together-grid h4 {
    margin: 0 0 8px;
    color: var(--db-dark-teal);
    font-size: 20px;
    font-weight: 700;
}

.about-together-grid p {
    margin: 0 0 12px;
    padding: 0;
    font-size: 16px;
    line-height: 1.55;
}

.about-together-action {
    margin-top: auto;
    padding-top: 10px;
    text-align: center;
}

.about-together-action .button-link {
    width: 100%;
    min-height: 52px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
}

.about-final-cta {
    margin-top: 28px;
}

@media (max-width: 800px) {
    .about-together-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .about-profile-role {
        min-height: 0;
        display: block;
    }
}



.about-service-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.about-service-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 12px;
    background-color: var(--db-pale-blue);
    border: 1px solid var(--db-blue);
    color: var(--db-dark-teal);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    box-sizing: border-box;
}

.about-service-links a:hover,
.about-service-links a:focus {
    background-color: var(--db-yellow);
    border-color: var(--db-text);
    color: var(--db-text);
    text-decoration: none;
}

@media (max-width: 700px) {
    .about-service-links {
        flex-direction: column;
        align-items: stretch;
    }

    .about-service-links a {
        width: 100%;
    }
}


/* =========================================================
   ADHD Mum Priority Reset resource page
   ========================================================= */

.resource-page {
    width: 90%;
    max-width: 1040px;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
}

.resource-hero .resource-eyebrow {
    margin: 0 0 8px;
    padding: 0;
    color: var(--db-dark-teal);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.resource-hero .text h2 {
    max-width: 690px;
}

.resource-print-title {
    display: none;
}

.resource-intro-panel {
    margin-top: 18px;
    margin-bottom: 38px;
}

.resource-step {
    margin: 0 0 30px;
}

.resource-step .content-heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    text-align: left;
}

.text-section h2.content-heading .resource-step-number,
.resource-step-number {
    display: inline-flex;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: var(--db-blue);
    border: 2px solid var(--db-dark-teal);
    border-radius: 50%;
    color: var(--db-text);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    box-sizing: border-box;
}

.resource-step > .content-panel {
    margin-bottom: 0;
}

.resource-step-intro {
    margin: 0;
    padding: 16px 20px 18px !important;
    background-color: var(--db-pale-blue);
    border-left: 1px solid var(--db-soft-border);
    border-right: 1px solid var(--db-soft-border);
    font-size: 17px !important;
    line-height: 1.6;
}

.printable-workspace {
    background-color: var(--db-white);
    border-top: 0;
}

.write-space {
    min-height: 230px;
    margin-top: 14px;
    /* Lift the text and placeholder 1px above the ruled line without resizing the box. */
    padding: 9px 14px 11px;
    border: 2px dashed rgba(33, 71, 71, 0.38);
    background-color: var(--db-white);
    background-image: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 31px,
        rgba(33, 71, 71, 0.16) 32px
    );
    color: var(--db-text);
    font: inherit;
    line-height: 32px;
    text-align: left;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    cursor: text;
    outline: none;
    overflow: visible;
    box-sizing: border-box;
}

.editable-workspace:empty::before {
    content: attr(data-placeholder);
    color: rgba(33, 71, 71, 0.58);
    font-style: italic;
    pointer-events: none;
}

.editable-workspace:hover {
    border-color: rgba(33, 71, 71, 0.62);
}

.editable-workspace:focus {
    border-color: var(--db-dark-teal);
    box-shadow: 0 0 0 4px rgba(153, 204, 204, 0.28);
}

.write-space-large {
    min-height: 230px;
}

.write-space-short {
    min-height: 230px;
}

.priority-reset-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 16px;
    background-color: var(--db-pale-blue);
    border: 1px solid var(--db-soft-border);
    box-shadow: var(--db-soft-shadow);
    box-sizing: border-box;
}

.priority-reset-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    padding: 0 16px 16px;
    overflow: hidden;
    background-color: var(--db-white);
    border: 1px solid var(--db-soft-border);
    border-top: 8px solid var(--db-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.045);
    box-sizing: border-box;
}

.priority-reset-card-now,
.priority-reset-card-drop {
    border-top-color: var(--db-yellow);
}

.priority-reset-label {
    display: inline-block;
    margin: 16px 0 7px !important;
    padding: 5px 9px !important;
    background-color: var(--db-pale-blue);
    color: var(--db-dark-teal);
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.priority-reset-card-now .priority-reset-label,
.priority-reset-card-drop .priority-reset-label {
    background-color: #FFF8CF;
}

.resource-page .priority-reset-card h3 {
    margin: 0 0 8px;
    padding: 0;
    color: var(--db-text);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.resource-page .priority-reset-card p:not(.priority-reset-label) {
    min-height: 0;
    margin: 0;
    padding: 0;
    font-size: 17px;
    line-height: 1.55;
}

.resource-page .priority-reset-card .write-space {
    flex: 1 1 180px;
    min-height: 180px;
    margin-top: 14px;
}

.resource-question-panel {
    border-top: 0;
}

.resource-question-panel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.resource-question-panel li {
    position: relative;
    margin: 0;
    padding: 14px 16px 14px 46px;
    background-color: var(--db-white);
    border-left: 6px solid var(--db-blue);
    line-height: 1.5;
}

.resource-question-panel li::before {
    content: "?";
    position: absolute;
    left: 14px;
    top: 13px;
    display: inline-flex;
    width: 23px;
    height: 23px;
    align-items: center;
    justify-content: center;
    background-color: var(--db-yellow);
    border-radius: 50%;
    font-weight: 700;
    line-height: 1;
}

.resource-next-step-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.resource-writing-prompt {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.resource-writing-prompt .write-space {
    margin-top: auto;
}

.resource-writing-prompt p {
    min-height: 54px;
    margin: 0;
    padding: 0;
}

.resource-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 8px 0 22px;
}

.resource-actions .button-link,
.resource-actions .print-resource-button {
    margin: 0;
}

.print-resource-button {
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    font-size: 18px;
}

.clear-resource-button {
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    font-size: 18px;
    cursor: pointer;
}

.resource-save-status {
    margin: -8px 0 22px !important;
    color: var(--db-dark-teal);
    font-size: 14px !important;
    line-height: 1.4;
    text-align: center;
}

.resource-note {
    max-width: 780px;
    margin: 0 auto 20px !important;
    padding: 16px 18px !important;
    background-color: var(--db-pale-blue);
    border-left: 6px solid var(--db-blue);
    color: var(--db-text);
    font-size: 15px !important;
    line-height: 1.55;
    text-align: left;
    box-sizing: border-box;
}

@media (max-width: 760px) {
    .resource-page {
        width: 90%;
        padding-left: 0;
        padding-right: 0;
    }

    .resource-step .content-heading {
        gap: 9px;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 21px;
    }

    .resource-step-number {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .priority-reset-grid,
    .resource-question-panel ul,
    .resource-next-step-panel {
        grid-template-columns: 1fr;
    }

    .priority-reset-grid {
        padding: 14px;
        gap: 14px;
    }

    .resource-page .priority-reset-card p:not(.priority-reset-label),
    .resource-writing-prompt p {
        min-height: 0;
    }

    .resource-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .resource-actions .button-link,
    .resource-actions .print-resource-button {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}


/* =========================================================
   Priority Reset final interactive layout corrections
   Flex makes each writing area fill the usable part of its card.
   ========================================================= */
@media (min-width: 769px) {
    .resource-page .priority-reset-grid > article {
        display: flex !important;
        flex-direction: column !important;
        align-content: initial !important;
        min-width: 0 !important;
        height: 100% !important;
        padding: 0 16px 16px !important;
    }

    .resource-page .priority-reset-grid > article > .priority-reset-label {
        display: block !important;
        min-height: 0 !important;
        margin: 16px 0 7px !important;
        padding: 5px 9px !important;
    }

    .resource-page .priority-reset-grid > article > h3 {
        display: block !important;
        /* Reserve two heading lines so every writing box starts at the same level. */
        min-height: 2.4em !important;
        margin: 0 0 8px !important;
        padding: 10px 12px !important;
        box-sizing: border-box !important;
    }

    .resource-page .priority-reset-grid > article > p:not(.priority-reset-label) {
        display: block !important;
        /* The longest prompt uses three lines at the narrow end of this layout. */
        min-height: 4.35em !important;
        margin: 0 !important;
        padding: 0 8px !important;
        line-height: 1.45 !important;
        box-sizing: border-box !important;
    }

    .resource-page .priority-reset-grid > article > .write-space {
        flex: 1 1 230px !important;
        width: 100% !important;
        height: auto !important;
        min-height: 230px !important;
        margin: 14px 0 0 !important;
        align-self: stretch !important;
    }
}

@media (max-width: 768px) {
    .resource-page .priority-reset-grid {
        grid-template-columns: 1fr !important;
    }

    .resource-page .priority-reset-grid > article {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        padding: 0 16px 16px !important;
    }

    .resource-page .priority-reset-grid > article > .priority-reset-label {
        display: block !important;
        margin: 16px 0 7px !important;
        padding: 5px 9px !important;
    }

    .resource-page .priority-reset-grid > article > p:not(.priority-reset-label) {
        display: block !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 4px !important;
    }

    .resource-page .priority-reset-grid > article > .write-space {
        flex: 0 0 auto !important;
        height: auto !important;
        min-height: 230px !important;
        margin-top: 14px !important;
    }
}

/* =========================================================
   Shared accessibility options panel
   Markup and behaviour: /includes/accessibility-panel.php
   ========================================================= */
:root {
    --db-a11y-tint-colour: transparent;
    --db-a11y-tint-opacity: 0;
}

.db-a11y-tools,
.db-a11y-tools * {
    box-sizing: border-box;
}

.db-a11y-tools {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 10060;
    color: var(--db-text);
    font-family: 'proxima-nova', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
}

.db-a11y-launcher {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.db-a11y-main-button,
.db-a11y-hide-button,
.db-a11y-restore-button,
.db-a11y-close-button,
.db-a11y-tab,
.db-a11y-control,
.db-a11y-wide-control,
.db-a11y-toggle-control,
.db-a11y-step-button,
.db-a11y-section-reset,
.db-a11y-reset-all,
.db-a11y-colour-swatch {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    cursor: pointer;
}

.db-a11y-main-button,
.db-a11y-hide-button,
.db-a11y-restore-button {
    min-height: 48px;
    border: 2px solid var(--db-text);
    border-radius: 999px;
    color: var(--db-text);
    font-weight: 800;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.db-a11y-main-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 8px;
    background: var(--db-yellow);
}

.db-a11y-main-button-icon,
.db-a11y-restore-button span {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    border: 2px solid var(--db-text);
    border-radius: 50%;
    background: var(--db-blue);
    font-size: 14px;
    line-height: 1;
}

.db-a11y-hide-button {
    min-height: 44px;
    padding: 8px 12px;
    background: var(--db-white);
    font-size: 14px;
}

.db-a11y-restore-button {
    display: none;
    width: 48px;
    height: 48px;
    padding: 6px;
    align-items: center;
    justify-content: center;
    background: var(--db-yellow);
}

.db-a11y-restore-button span {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
}

.db-a11y-main-button:hover,
.db-a11y-main-button:focus-visible,
.db-a11y-hide-button:hover,
.db-a11y-hide-button:focus-visible,
.db-a11y-restore-button:hover,
.db-a11y-restore-button:focus-visible {
    background: var(--db-blue);
    outline: 3px solid var(--db-text);
    outline-offset: 3px;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.db-a11y-active-badge {
    display: inline-flex;
    min-width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--db-text);
    color: var(--db-white);
    font-size: 13px;
    line-height: 1;
}

.db-a11y-active-badge[hidden],
.db-a11y-panel[hidden],
.db-a11y-tab-panel[hidden] {
    display: none !important;
}

.db-a11y-tools-hidden .db-a11y-launcher,
.db-a11y-tools-hidden .db-a11y-panel {
    display: none !important;
}

.db-a11y-tools-hidden .db-a11y-restore-button {
    display: inline-flex;
}

.db-a11y-panel {
    position: absolute;
    right: 0;
    bottom: 62px;
    display: flex;
    width: 470px;
    max-width: calc(100vw - 36px);
    max-height: calc(100vh - 112px);
    flex-direction: column;
    overflow: hidden;
    background: #fff8df;
    border: 2px solid var(--db-text);
    border-top: 10px solid var(--db-blue);
    border-radius: 18px;
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.32);
    animation: dbA11yPanelPop 0.22s ease-out both;
}

.db-a11y-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 16px 13px;
    background: var(--db-pale-blue);
    border-bottom: 1px solid var(--db-soft-border);
}

.db-a11y-eyebrow {
    margin: 0 0 2px;
    color: var(--db-dark-teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.db-a11y-panel-header h2 {
    margin: 0;
    color: var(--db-text);
    font-size: 25px;
    font-weight: 800;
    line-height: 1.1;
}

.db-a11y-panel-summary {
    margin: 5px 0 0;
    color: var(--db-dark-teal);
    font-size: 14px;
    line-height: 1.35;
}

.db-a11y-close-button {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
    padding: 0;
    background: var(--db-white);
    border: 2px solid var(--db-text);
    border-radius: 50%;
    color: var(--db-text);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.db-a11y-close-button:hover,
.db-a11y-close-button:focus-visible {
    background: var(--db-yellow);
    outline: 3px solid var(--db-text);
    outline-offset: 2px;
}

.db-a11y-tabs {
    display: flex;
    flex: 0 0 auto;
    overflow-x: auto;
    background: var(--db-white);
    border-bottom: 2px solid var(--db-text);
    scrollbar-width: thin;
}

.db-a11y-tab {
    flex: 1 0 auto;
    min-height: 45px;
    padding: 9px 12px;
    background: var(--db-white);
    border: 0;
    border-right: 1px solid var(--db-soft-border);
    border-bottom: 5px solid transparent;
    color: var(--db-text);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.1;
}

.db-a11y-tab:last-child {
    border-right: 0;
}

.db-a11y-tab:hover,
.db-a11y-tab:focus-visible {
    background: var(--db-pale-blue);
    outline: 3px solid var(--db-text);
    outline-offset: -3px;
}

.db-a11y-tab[aria-selected="true"] {
    background: #fff9cf;
    border-bottom-color: var(--db-yellow);
}

.db-a11y-panel-scroll {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-color: var(--db-blue) var(--db-pale-blue);
}

.db-a11y-tab-panel {
    padding: 16px;
}

.db-a11y-section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 13px;
}

.db-a11y-section-heading h3 {
    margin: 0 0 3px;
    color: var(--db-text);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.db-a11y-section-heading p,
.db-a11y-help {
    margin: 0;
    color: #365353;
    font-size: 14px;
    line-height: 1.4;
}

.db-a11y-section-reset,
.db-a11y-reset-all {
    min-height: 34px;
    padding: 6px 9px;
    flex: 0 0 auto;
    background: var(--db-white);
    border: 1px solid var(--db-dark-teal);
    border-radius: 999px;
    color: var(--db-dark-teal);
    font-size: 13px;
    font-weight: 800;
}

.db-a11y-section-reset:hover,
.db-a11y-section-reset:focus-visible,
.db-a11y-reset-all:hover,
.db-a11y-reset-all:focus-visible {
    background: var(--db-yellow);
    border-color: var(--db-text);
    color: var(--db-text);
    outline: 2px solid var(--db-text);
    outline-offset: 2px;
}

.db-a11y-status {
    margin: 0 0 13px;
    padding: 10px 12px;
    background: var(--db-pale-blue);
    border-left: 6px solid var(--db-blue);
    color: var(--db-dark-teal);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.db-a11y-button-grid,
.db-a11y-toggle-grid,
.db-a11y-field-grid,
.db-a11y-page-actions {
    display: grid;
    gap: 9px;
}

.db-a11y-button-grid-five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-bottom: 14px;
}

.db-a11y-control,
.db-a11y-wide-control,
.db-a11y-step-button {
    min-height: 43px;
    padding: 8px 10px;
    background: var(--db-white);
    border: 2px solid var(--db-blue);
    border-radius: 10px;
    color: var(--db-text);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.db-a11y-control:hover,
.db-a11y-control:focus-visible,
.db-a11y-wide-control:hover,
.db-a11y-wide-control:focus-visible,
.db-a11y-step-button:hover,
.db-a11y-step-button:focus-visible {
    background: var(--db-yellow);
    border-color: var(--db-text);
    outline: 2px solid var(--db-text);
    outline-offset: 2px;
}

.db-a11y-control:disabled,
.db-a11y-wide-control:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.db-a11y-wide-control {
    width: 100%;
    margin-top: 11px;
}

.db-a11y-field-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(105px, 0.7fr);
}

.db-a11y-field {
    margin: 12px 0;
}

.db-a11y-field label,
.db-a11y-range-field label,
.db-a11y-tint-fieldset legend,
.db-a11y-tint-actions label {
    display: block;
    margin: 0 0 6px;
    color: var(--db-text);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
}

.db-a11y-select {
    width: 100%;
    min-height: 43px;
    padding: 8px 34px 8px 10px;
    background: var(--db-white);
    border: 2px solid var(--db-blue);
    border-radius: 8px;
    color: var(--db-text);
    font: inherit;
    font-size: 15px;
}

.db-a11y-select:focus-visible,
.db-a11y-range-field input:focus-visible {
    border-color: var(--db-text);
    outline: 3px solid var(--db-yellow);
    outline-offset: 2px;
}

.db-a11y-help {
    margin-top: 9px;
}

.db-a11y-setting-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 10px 0 14px;
    padding: 12px;
    background: var(--db-white);
    border: 1px solid var(--db-soft-border);
    border-left: 7px solid var(--db-blue);
    border-radius: 10px;
}

.db-a11y-setting-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.db-a11y-setting-copy strong {
    font-size: 16px;
}

.db-a11y-setting-copy span {
    color: var(--db-dark-teal);
    font-size: 14px;
}

.db-a11y-stepper {
    display: flex;
    gap: 7px;
}

.db-a11y-step-button {
    min-width: 52px;
    font-size: 17px;
}

.db-a11y-toggle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
}

.db-a11y-toggle-control {
    position: relative;
    min-height: 76px;
    padding: 11px 38px 11px 11px;
    background: var(--db-white);
    border: 2px solid var(--db-blue);
    border-radius: 11px;
    color: var(--db-text);
    text-align: left;
}

.db-a11y-toggle-control::after {
    content: "";
    position: absolute;
    right: 11px;
    top: 12px;
    width: 19px;
    height: 19px;
    background: var(--db-white);
    border: 2px solid var(--db-dark-teal);
    border-radius: 50%;
}

.db-a11y-toggle-control span,
.db-a11y-toggle-control small {
    display: block;
}

.db-a11y-toggle-control span {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.db-a11y-toggle-control small {
    margin-top: 4px;
    color: #365353;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
}

.db-a11y-toggle-control:hover,
.db-a11y-toggle-control:focus-visible {
    background: var(--db-pale-blue);
    border-color: var(--db-text);
    outline: 2px solid var(--db-text);
    outline-offset: 2px;
}

.db-a11y-toggle-control[aria-pressed="true"] {
    background: #fff8c9;
    border-color: var(--db-text);
    box-shadow: inset 0 0 0 2px var(--db-yellow);
}

.db-a11y-toggle-control[aria-pressed="true"]::after {
    background: var(--db-yellow);
    box-shadow: inset 0 0 0 4px var(--db-white);
}

.db-a11y-tint-fieldset {
    margin: 14px 0;
    padding: 11px 12px 13px;
    background: var(--db-white);
    border: 1px solid var(--db-soft-border);
    border-radius: 11px;
}

.db-a11y-tint-fieldset legend {
    padding: 0 5px;
}

.db-a11y-tint-actions {
    display: grid;
    grid-template-columns: auto auto minmax(110px, 1fr);
    align-items: center;
    gap: 8px;
    margin-bottom: 11px;
}

.db-a11y-tint-actions label {
    margin: 0;
    text-align: right;
}

.db-a11y-tint-strength {
    min-height: 36px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 14px;
}

.db-a11y-colour-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 7px;
}

.db-a11y-colour-swatch {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 34px;
    padding: 0;
    border: 2px solid var(--db-text);
    border-radius: 5px;
}

.db-a11y-colour-swatch:hover,
.db-a11y-colour-swatch:focus-visible {
    outline: 3px solid var(--db-text);
    outline-offset: 2px;
    transform: scale(1.06);
}

.db-a11y-colour-swatch[aria-pressed="true"] {
    outline: 4px solid var(--db-yellow);
    outline-offset: 2px;
    box-shadow: 0 0 0 2px var(--db-text);
}

.db-a11y-swatch-cream { background: #fdf0ca; }
.db-a11y-swatch-soft-yellow { background: #fff3a8; }
.db-a11y-swatch-pale-blue { background: #dceeff; }
.db-a11y-swatch-aqua { background: #ccefee; }
.db-a11y-swatch-mint { background: #d9f4df; }
.db-a11y-swatch-sage { background: #dfe8cf; }
.db-a11y-swatch-peach { background: #ffd9bd; }
.db-a11y-swatch-soft-pink { background: #f7d8e5; }
.db-a11y-swatch-rose { background: #efc6ce; }
.db-a11y-swatch-lavender { background: #e6d9f3; }
.db-a11y-swatch-pale-purple { background: #dcd5f5; }
.db-a11y-swatch-cool-grey { background: #dfe5e8; }
.db-a11y-swatch-warm-grey { background: #e7e0d8; }
.db-a11y-swatch-sepia { background: #d8c7a3; }
.db-a11y-swatch-sky { background: #c9e8ff; }
.db-a11y-swatch-soft-green { background: #cfe8d2; }

.db-a11y-range-field {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 12px;
    margin-top: 15px;
    padding: 12px;
    background: var(--db-white);
    border: 1px solid var(--db-soft-border);
    border-radius: 10px;
}

.db-a11y-range-field label {
    margin: 0;
}

.db-a11y-range-field input {
    width: 100%;
    grid-column: 1 / -1;
    accent-color: var(--db-dark-teal);
}

.db-a11y-range-field output {
    color: var(--db-dark-teal);
    font-size: 14px;
    font-weight: 800;
}

.db-a11y-page-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2px;
}

.db-a11y-page-actions .db-a11y-wide-control {
    margin: 0;
}

.db-a11y-outline {
    margin-top: 14px;
    padding: 12px;
    background: var(--db-pale-blue);
    border-left: 7px solid var(--db-blue);
    border-radius: 9px;
}

.db-a11y-outline h4 {
    margin: 0 0 8px;
    color: var(--db-text);
    font-size: 16px;
    line-height: 1.3;
}

.db-a11y-outline ol {
    margin: 0;
    padding-left: 22px;
}

.db-a11y-outline li {
    margin: 5px 0;
    color: var(--db-dark-teal);
    line-height: 1.3;
}

.db-a11y-outline-level-h3,
.db-a11y-outline-level-h4 {
    margin-left: 15px !important;
}

.db-a11y-outline a,
.db-a11y-panel-footer a {
    color: var(--db-dark-teal);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--db-blue);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.db-a11y-outline a:hover,
.db-a11y-outline a:focus-visible,
.db-a11y-panel-footer a:hover,
.db-a11y-panel-footer a:focus-visible {
    background: var(--db-yellow);
    color: var(--db-text);
    outline: 2px solid var(--db-text);
    outline-offset: 2px;
}

.db-a11y-panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    background: var(--db-pale-blue);
    border-top: 1px solid var(--db-soft-border);
    color: var(--db-dark-teal);
    font-size: 13px;
    line-height: 1.3;
}

.db-a11y-reset-all {
    background: var(--db-yellow);
    border-color: var(--db-text);
    color: var(--db-text);
}

@keyframes dbA11yPanelPop {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Page-level transformations follow the classes used by the site's templates. */
body.db-a11y-text-size-1 :where(.picture-section .text, .text-section, .faq-section, .site-footer) :is(p, li, blockquote, figcaption),
body.db-a11y-text-size-1 .nav-links a {
    font-size: 18px !important;
}

body.db-a11y-text-size-2 :where(.picture-section .text, .text-section, .faq-section, .site-footer) :is(p, li, blockquote, figcaption),
body.db-a11y-text-size-2 .nav-links a {
    font-size: 20px !important;
}

body.db-a11y-text-size-3 :where(.picture-section .text, .text-section, .faq-section, .site-footer) :is(p, li, blockquote, figcaption),
body.db-a11y-text-size-3 .nav-links a {
    font-size: 23px !important;
}

body.db-a11y-font-arial :where(.top-banner, .links-bar, .picture-section, .text-section, .faq-section, .site-footer, .db-a11y-tools, input, select, textarea, button) {
    font-family: Arial, Helvetica, sans-serif !important;
}

body.db-a11y-font-verdana :where(.top-banner, .links-bar, .picture-section, .text-section, .faq-section, .site-footer, .db-a11y-tools, input, select, textarea, button) {
    font-family: Verdana, Geneva, sans-serif !important;
}

body.db-a11y-font-georgia :where(.top-banner, .links-bar, .picture-section, .text-section, .faq-section, .site-footer, .db-a11y-tools, input, select, textarea, button) {
    font-family: Georgia, 'Times New Roman', serif !important;
}

body.db-a11y-font-mono :where(.top-banner, .links-bar, .picture-section, .text-section, .faq-section, .site-footer, .db-a11y-tools, input, select, textarea, button) {
    font-family: 'Courier New', Courier, monospace !important;
}

body.db-a11y-spacing :where(.picture-section .text, .text-section, .faq-section, .site-footer) :is(p, li, blockquote, figcaption) {
    line-height: 1.9 !important;
    letter-spacing: 0.035em !important;
    word-spacing: 0.08em !important;
}

body.db-a11y-spacing :where(.text-section, .faq-section) p {
    margin-bottom: 1.35em !important;
}

body.db-a11y-readable-width :where(.picture-section .text, .text-section, .content-panel, .content-break, .faq-section .p, main article) > :is(p, ul, ol, blockquote) {
    max-width: 72ch !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

body.db-a11y-left-align :where(.picture-section .text, .text-section, .content-panel, .content-break, .faq-section .p, main article, .site-footer) {
    text-align: left !important;
}

body.db-a11y-highlight-links :where(.picture-section, .text-section, .faq-section, .site-footer, .links-bar) a:not(.button-link) {
    background: var(--db-yellow) !important;
    color: #000 !important;
    font-weight: 800 !important;
    text-decoration: underline !important;
    text-decoration-color: #000 !important;
    text-decoration-thickness: 3px !important;
    text-underline-offset: 4px !important;
}

body.db-a11y-grayscale :where(.picture-section, .text-section, main) :is(img, video, iframe) {
    filter: grayscale(1) !important;
}

body.db-a11y-contrast-dark {
    --db-a11y-page-bg: #101718;
    --db-a11y-page-panel: #1d2b2c;
    --db-a11y-page-text: #f7f7f2;
    --db-a11y-page-accent: #99cccc;
    --db-a11y-page-accent-text: #081010;
    --db-a11y-page-link: #fff36d;
}

body.db-a11y-contrast-light {
    --db-a11y-page-bg: #ffffff;
    --db-a11y-page-panel: #ffffff;
    --db-a11y-page-text: #000000;
    --db-a11y-page-accent: #000000;
    --db-a11y-page-accent-text: #ffffff;
    --db-a11y-page-link: #0000b5;
}

body.db-a11y-contrast-black-white {
    --db-a11y-page-bg: #000000;
    --db-a11y-page-panel: #000000;
    --db-a11y-page-text: #ffffff;
    --db-a11y-page-accent: #ffffff;
    --db-a11y-page-accent-text: #000000;
    --db-a11y-page-link: #ffffff;
}

body.db-a11y-contrast-black-yellow {
    --db-a11y-page-bg: #000000;
    --db-a11y-page-panel: #000000;
    --db-a11y-page-text: #fff000;
    --db-a11y-page-accent: #fff000;
    --db-a11y-page-accent-text: #000000;
    --db-a11y-page-link: #fff000;
}

body.db-a11y-contrast-navy-cream {
    --db-a11y-page-bg: #08264a;
    --db-a11y-page-panel: #12345b;
    --db-a11y-page-text: #fff4cf;
    --db-a11y-page-accent: #fff4cf;
    --db-a11y-page-accent-text: #08264a;
    --db-a11y-page-link: #fff4cf;
}

body.db-a11y-contrast-on,
body.db-a11y-contrast-on :where(.top-banner, .links-bar, .full-width, .picture-section, .section, .text-section, .site-footer, .footer, .footer-bottom) {
    background-color: var(--db-a11y-page-bg) !important;
    background-image: none !important;
    color: var(--db-a11y-page-text) !important;
    border-color: var(--db-a11y-page-text) !important;
}

body.db-a11y-contrast-on :where(.picture-section .text, .text-section, .faq-section, .site-footer),
body.db-a11y-contrast-on :where(.picture-section .text, .text-section, .faq-section, .site-footer) * {
    color: var(--db-a11y-page-text) !important;
    border-color: var(--db-a11y-page-text) !important;
}

body.db-a11y-contrast-on :where(.content-panel, .content-break, .service-box, .faq-section .p, main article, main [class$="-panel"], main [class$="-card"], main [class$="-strip"], main [class$="-banner"]) {
    background-color: var(--db-a11y-page-panel) !important;
    background-image: none !important;
    color: var(--db-a11y-page-text) !important;
    border-color: var(--db-a11y-page-text) !important;
    box-shadow: none !important;
}

body.db-a11y-contrast-on :where(.content-heading, .faq-section .c, main [class$="-heading"], .links-bar, .footer-bottom) {
    background-color: var(--db-a11y-page-accent) !important;
    color: var(--db-a11y-page-accent-text) !important;
    border-color: var(--db-a11y-page-text) !important;
}

body.db-a11y-contrast-on :where(.content-heading, .faq-section .c, main [class$="-heading"], .links-bar, .footer-bottom) * {
    color: var(--db-a11y-page-accent-text) !important;
}

body.db-a11y-contrast-on .nav-submenu,
body.db-a11y-contrast-on .nav-submenu a {
    background: var(--db-a11y-page-panel) !important;
    color: var(--db-a11y-page-text) !important;
    border-color: var(--db-a11y-page-text) !important;
}

body.db-a11y-contrast-on :where(.picture-section, .text-section, .faq-section, .site-footer, .links-bar) a:not(.button-link) {
    background: transparent !important;
    color: var(--db-a11y-page-link) !important;
    font-weight: 800 !important;
    text-decoration: underline !important;
    text-decoration-thickness: 3px !important;
    text-underline-offset: 4px !important;
}

body.db-a11y-contrast-on .button-link,
body.db-a11y-contrast-on .text-section button:not(.db-a11y-control) {
    background: var(--db-a11y-page-accent) !important;
    color: var(--db-a11y-page-accent-text) !important;
    border: 2px solid var(--db-a11y-page-text) !important;
}

body.db-a11y-contrast-on :where(.text-section, main) :is(input, select, textarea, [contenteditable="true"]) {
    background: var(--db-a11y-page-panel) !important;
    color: var(--db-a11y-page-text) !important;
    border-color: var(--db-a11y-page-text) !important;
}

body.db-a11y-tint-on::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 10010;
    pointer-events: none;
    background: var(--db-a11y-tint-colour);
    opacity: var(--db-a11y-tint-opacity);
}

.db-a11y-reading-guide {
    position: fixed;
    left: 0;
    top: 50%;
    z-index: 10022;
    display: none;
    width: 100vw;
    height: 40px;
    pointer-events: none;
    border-top: 3px solid var(--db-yellow);
    border-bottom: 3px solid var(--db-yellow);
    background: rgba(153, 204, 204, 0.2);
    box-shadow: 0 0 0 1px rgba(17, 17, 17, 0.55);
}

body.db-a11y-guide-on .db-a11y-reading-guide {
    display: block;
}

.db-a11y-reading-mask {
    position: fixed;
    left: 0;
    z-index: 10020;
    display: none;
    width: 100vw;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.72);
}

.db-a11y-reading-mask-top {
    top: 0;
}

.db-a11y-reading-mask-bottom {
    bottom: 0;
}

body.db-a11y-mask-on .db-a11y-reading-mask {
    display: block;
}

.db-a11y-cursor-highlight {
    position: fixed;
    left: 50%;
    top: 50%;
    z-index: 10024;
    display: none;
    width: 58px;
    height: 58px;
    pointer-events: none;
    transform: translate(-50%, -50%);
    border: 4px solid var(--db-yellow);
    border-radius: 50%;
    background: rgba(153, 204, 204, 0.2);
    box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.8);
}

body.db-a11y-cursor-on .db-a11y-cursor-highlight {
    display: block;
}

.db-a11y-focus-target,
.db-a11y-speaking {
    position: relative;
    z-index: 1;
    background: #fff3a8 !important;
    color: #000 !important;
    outline: 4px solid var(--db-blue) !important;
    outline-offset: 4px !important;
    border-radius: 2px;
}

body.db-a11y-strong-focus :where(a, button, input, select, textarea, summary, [tabindex]):focus,
body.db-a11y-strong-focus :where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
    outline: 5px solid var(--db-yellow) !important;
    outline-offset: 4px !important;
    box-shadow: 0 0 0 8px rgba(17, 17, 17, 0.92) !important;
}

body.db-a11y-reduce-motion *,
body.db-a11y-reduce-motion *::before,
body.db-a11y-reduce-motion *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
}

body.db-a11y-images-hidden :where(.picture-section, .text-section, main) img,
body.db-a11y-images-alt :where(.picture-section, .text-section, main) img,
body.db-a11y-text-only :where(.picture-section, .text-section, main) :is(img, picture, video, audio, iframe, canvas, svg) {
    display: none !important;
}

.db-a11y-alt-replacement {
    display: block;
    width: min(100%, 760px);
    margin: 12px auto;
    padding: 12px 14px;
    background: var(--db-pale-blue);
    border: 2px dashed var(--db-dark-teal);
    color: var(--db-text);
    font-size: 16px;
    font-style: italic;
    line-height: 1.5;
    text-align: left;
}

body.db-a11y-text-only :where(.picture-section, .text-section, main, main section, main article, .content-panel, .content-break) {
    background-image: none !important;
    box-shadow: none !important;
}

@media (max-width: 620px) {
    .db-a11y-tools {
        right: 8px;
        bottom: 8px;
    }

    .db-a11y-panel {
        bottom: 58px;
        width: calc(100vw - 16px);
        max-width: none;
        max-height: calc(100vh - 76px);
        border-radius: 14px;
    }

    .db-a11y-panel-header {
        padding: 13px;
    }

    .db-a11y-panel-header h2 {
        font-size: 22px;
    }

    .db-a11y-tab {
        min-width: 72px;
        padding-right: 9px;
        padding-left: 9px;
        font-size: 14px;
    }

    .db-a11y-tab-panel {
        padding: 13px;
    }

    .db-a11y-button-grid-five {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .db-a11y-field-grid,
    .db-a11y-toggle-grid {
        grid-template-columns: 1fr;
    }

    .db-a11y-colour-grid {
        grid-template-columns: repeat(8, minmax(28px, 1fr));
        overflow-x: auto;
        padding: 3px;
    }

    .db-a11y-panel-footer {
        flex-wrap: wrap;
    }

    .db-a11y-hide-button {
        min-width: 44px;
        padding-right: 8px;
        padding-left: 8px;
        font-size: 12px;
    }
}

@media (max-width: 390px) {
    .db-a11y-main-button {
        padding-right: 10px;
        font-size: 14px;
    }

    .db-a11y-main-button-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        font-size: 12px;
    }

    .db-a11y-tint-actions {
        grid-template-columns: 1fr 1fr;
    }

    .db-a11y-tint-actions label {
        text-align: left;
    }

    .db-a11y-tint-strength {
        grid-column: 2;
    }
}

@media (prefers-reduced-motion: reduce) {
    .db-a11y-panel,
    .db-a11y-main-button,
    .db-a11y-hide-button,
    .db-a11y-restore-button,
    .db-a11y-colour-swatch {
        animation: none !important;
        transition: none !important;
    }
}

/* =========================================================
   Priority Reset print / Save as PDF
   ========================================================= */
@media print {
    @page {
        size: A4 portrait;
        margin: 12mm;
    }

    header,
    footer,
    nav,
    [role="banner"],
    [role="navigation"],
    [role="contentinfo"],
    .site-header,
    .site-footer,
    .top-banner,
    .links-bar,
    .nav-container,
    .menu-button,
    .menu-toggle,
    .skip-link,
    .skip-to-content,
    a[href="#main-content"],
    .resource-hero,
    .resource-actions,
    .resource-save-status,
    .accessibility-panel,
    .accessibility-controls,
    .db-a11y-tools,
    .db-a11y-reading-guide,
    .db-a11y-reading-mask,
    .db-a11y-cursor-highlight,
    .db-a11y-alt-replacement,
    #cookie-settings-button,
    .cookie-settings-button,
    .cookie-consent-banner,
    .cookie-banner,
    [id*="cookie" i],
    [class*="cookie" i],
    [id*="consent" i],
    [class*="consent" i],
    [id*="accessibility" i],
    [class*="accessibility" i],
    [id*="access-options" i],
    [class*="access-options" i],
    [id*="userway" i],
    [class*="userway" i],
    [id*="recite" i],
    [class*="recite" i],
    #pojo-a11y-toolbar,
    .pojo-a11y-toolbar-toggle {
        display: none !important;
    }

    /* The worksheet has no printable controls: suppress injected launchers too. */
    body a,
    body button,
    body input,
    body select,
    body iframe,
    body [role="button"],
    body [role="dialog"],
    body [role="menu"],
    body [role="toolbar"],
    body [style*="position: fixed" i],
    body [style*="position:fixed" i] {
        display: none !important;
    }

    /* Page content is a direct child; remove any widget injected beside it. */
    body > :not(.full-width) {
        display: none !important;
    }

    body > .full-width {
        display: block !important;
    }

    html,
    body {
        width: auto !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #fff !important;
        color: #000 !important;
        font-size: 10.5pt !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .full-width,
    main#main-content,
    .resource-page {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .full-width {
        position: static !important;
        inset: auto !important;
        transform: none !important;
        overflow: visible !important;
    }

    main#main-content.resource-page {
        width: calc(100% - 4mm) !important;
        margin-right: auto !important;
        margin-left: auto !important;
        position: static !important;
        inset: auto !important;
        transform: none !important;
        overflow: visible !important;
    }

    .resource-page p,
    .resource-page li,
    .editable-workspace {
        color: #000 !important;
    }

    .resource-print-title {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        margin: 0 0 5mm !important;
        padding: 4mm 5mm 4.5mm !important;
        background: var(--db-pale-blue) !important;
        border-top: 2.2mm solid var(--db-yellow) !important;
        border-left: 2mm solid var(--db-blue) !important;
        color: var(--db-text) !important;
        text-align: left !important;
        box-sizing: border-box !important;
        break-inside: avoid-page;
        page-break-inside: avoid;
    }

    .resource-print-title * {
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: none !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
        box-sizing: border-box !important;
    }

    .resource-print-title .resource-print-eyebrow {
        margin: 0 0 1.5mm !important;
        color: var(--db-dark-teal) !important;
        font-size: 8.5pt !important;
        font-weight: 700 !important;
        line-height: 1.1 !important;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .resource-print-title h1 {
        margin: 0 0 1.5mm !important;
        padding: 0 !important;
        color: var(--db-text) !important;
        font-size: 22pt !important;
        font-weight: 700 !important;
        line-height: 1.05 !important;
        text-align: left !important;
    }

    .resource-print-title .resource-print-kicker {
        margin: 0 0 1.5mm !important;
        color: var(--db-dark-teal) !important;
        font-size: 12.5pt !important;
        font-weight: 700 !important;
        line-height: 1.15 !important;
    }

    .resource-print-title .resource-print-summary {
        max-width: 175mm;
        margin: 0 !important;
        color: #000 !important;
        font-size: 9.5pt !important;
        line-height: 1.3 !important;
    }

    .resource-intro-panel,
    .resource-step,
    .priority-reset-grid,
    .priority-reset-card,
    .content-panel,
    .resource-note,
    .editable-workspace {
        box-shadow: none !important;
    }

    .resource-intro-panel {
        margin: 0 0 7mm !important;
        padding: 4mm 5mm !important;
        border-left: 2mm solid var(--db-blue) !important;
        text-align: left !important;
        break-inside: avoid-page;
        page-break-inside: avoid;
    }

    .resource-step {
        margin: 0 0 6mm !important;
        break-inside: auto !important;
        page-break-inside: auto !important;
    }

    section[aria-labelledby="priority-reset-step-2"] {
        display: block !important;
        break-before: page !important;
        page-break-before: always !important;
        break-inside: avoid-page !important;
        page-break-inside: avoid !important;
    }

    section[aria-labelledby="priority-reset-step-3"] {
        break-before: page !important;
        page-break-before: always !important;
    }

    .resource-step .content-heading {
        margin: 0 !important;
        padding: 2.5mm 3mm !important;
        gap: 3mm !important;
        background: var(--db-yellow) !important;
        border-left: 2mm solid var(--db-blue) !important;
        color: #000 !important;
        font-size: 15pt !important;
        line-height: 1.15 !important;
        break-after: avoid-page;
        page-break-after: avoid;
    }

    .resource-step-number {
        width: 8mm !important;
        height: 8mm !important;
        flex-basis: 8mm !important;
        border: 0.5mm solid var(--db-dark-teal) !important;
        background: var(--db-blue) !important;
        color: #000 !important;
        font-size: 11pt !important;
    }

    .resource-step-intro {
        margin: 0 !important;
        padding: 3mm 4mm !important;
        font-size: 10pt !important;
        line-height: 1.35 !important;
    }

    section[aria-labelledby="priority-reset-step-2"] > .content-heading,
    section[aria-labelledby="priority-reset-step-2"] > .resource-step-intro {
        break-after: avoid-page !important;
        page-break-after: avoid !important;
    }

    .content-panel,
    .printable-workspace {
        margin: 0 !important;
        padding: 4mm !important;
    }

    .editable-workspace {
        height: auto !important;
        overflow: visible !important;
        border-color: #7f9999 !important;
        background-color: #fff !important;
        background-image: none !important;
        white-space: pre-wrap !important;
    }

    .editable-workspace:empty::before {
        content: none !important;
    }

    section[aria-labelledby="priority-reset-step-1"] .write-space-large {
        min-height: 120mm !important;
    }

    section[aria-labelledby="priority-reset-step-1"],
    section[aria-labelledby="priority-reset-step-1"] .printable-workspace {
        break-inside: avoid-page !important;
        page-break-inside: avoid !important;
    }

    /* Match the mobile selector's specificity so print reliably returns to 2 x 2. */
    .resource-page .priority-reset-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
        min-height: 230mm !important;
        gap: 4mm !important;
        margin: 0 !important;
        padding: 4mm !important;
        background: var(--db-pale-blue) !important;
        border: 0.3mm solid var(--db-soft-border) !important;
        break-inside: avoid-page !important;
        page-break-inside: avoid !important;
    }

    .resource-page .priority-reset-grid > article {
        display: flex !important;
        flex-direction: column !important;
        min-width: 0 !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 4mm 4mm !important;
        background: #fff !important;
        border-right: 0.3mm solid var(--db-soft-border) !important;
        border-bottom: 0.3mm solid var(--db-soft-border) !important;
        border-left: 0.3mm solid var(--db-soft-border) !important;
        box-sizing: border-box !important;
        break-inside: avoid-page !important;
        page-break-inside: avoid !important;
    }

    .resource-page .priority-reset-grid > article > .priority-reset-label {
        display: block !important;
        min-height: 0 !important;
        margin: 3mm 0 2mm !important;
        padding: 1.5mm 2mm !important;
        background: var(--db-pale-blue) !important;
        color: var(--db-dark-teal) !important;
        font-size: 8.5pt !important;
        line-height: 1.1 !important;
    }

    .resource-page .priority-reset-grid > article > h3 {
        display: block !important;
        min-height: 11mm !important;
        margin: 0 0 2mm !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        color: #000 !important;
        font-size: 13pt !important;
        line-height: 1.15 !important;
    }

    .resource-page .priority-reset-grid > article > p:not(.priority-reset-label) {
        display: block !important;
        min-height: 13mm !important;
        margin: 0 0 2mm !important;
        padding: 0 !important;
        color: #000 !important;
        font-size: 9.5pt !important;
        line-height: 1.25 !important;
    }

    .resource-page .priority-reset-grid > article > .write-space {
        flex: 1 1 32mm !important;
        width: 100% !important;
        height: auto !important;
        min-height: 32mm !important;
        margin: 0 !important;
        align-self: stretch !important;
        box-sizing: border-box !important;
    }

    .resource-question-panel,
    .resource-next-step-panel,
    .resource-note {
        break-inside: avoid-page;
        page-break-inside: avoid;
    }

    .resource-question-panel ul,
    .resource-next-step-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .resource-question-panel ul {
        gap: 3mm !important;
    }

    .resource-question-panel li {
        padding: 3mm 3mm 3mm 11mm !important;
        background: #fff !important;
        font-size: 9.5pt !important;
        line-height: 1.3 !important;
    }

    .resource-question-panel li::before {
        left: 3mm !important;
        top: 3mm !important;
        width: 6mm !important;
        height: 6mm !important;
    }

    .resource-next-step-panel {
        gap: 4mm !important;
    }

    .resource-writing-prompt p {
        min-height: 11mm !important;
        margin: 0 !important;
        font-size: 10pt !important;
        line-height: 1.25 !important;
    }

    .resource-writing-prompt .write-space-short {
        min-height: 120mm !important;
        margin-top: 2mm !important;
    }

    .resource-note {
        max-width: none !important;
        margin: 4mm 0 0 !important;
        padding: 3mm 4mm !important;
        background: var(--db-pale-blue) !important;
        color: #000 !important;
        font-size: 8.5pt !important;
        line-height: 1.3 !important;
    }
}
