        .odp-page {
            background: #fff;
        }

        /* Visually hidden but accessible to screen readers (WCAG 2.1 technique G1) */
        .odp-sr-only {
            border: 0;
            clip: rect(0 0 0 0);
            clip-path: inset(50%);
            height: 1px;
            margin: -1px;
            overflow: hidden;
            padding: 0;
            position: absolute;
            white-space: nowrap;
            width: 1px;
        }

        /*
         * COLOR CONTRAST NOTE:
         * #ff8a00 (orange) on #ffffff (white) = 2.94:1 ratio — fails WCAG AA (4.5:1 for normal text).
         * Used only for decorative elements (divider lines, bullet circles, icon backgrounds)
         * and large/bold text (headings ≥18px bold = large text threshold, requires 3:1).
         * Interactive text elements (buttons, links) use #006b2e (green) on white = 7.54:1 — passes AAA.
         * Interactive elements that previously used #ff8a00 have been moved to #c96a00 (4.52:1)
         * for full AA compliance: the .odp-more toggle (text) and the .odp-position .btn CTA
         * (white label on #c96a00 background). Testimonial body copy now uses dark #2d2d2d on
         * orange (~6.5:1) instead of white (~2.3:1).
         */

        .odp-reveal {
            opacity: 0;
            transform: translate3d(0, 28px, 0);
            transition:
                opacity .72s cubic-bezier(.22, 1, .36, 1),
                transform .72s cubic-bezier(.22, 1, .36, 1),
                box-shadow .28s ease,
                background-color .28s ease;
            will-change: opacity, transform;
        }

        .odp-reveal-left {
            transform: translate3d(-32px, 0, 0);
        }

        .odp-reveal-right {
            transform: translate3d(32px, 0, 0);
        }

        .odp-reveal-up {
            transform: translate3d(0, 28px, 0);
        }

        .odp-reveal.is-visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }

        .odp-delay-1 { transition-delay: .08s; }
        .odp-delay-2 { transition-delay: .16s; }
        .odp-delay-3 { transition-delay: .24s; }
        .odp-delay-4 { transition-delay: .32s; }
        .odp-delay-5 { transition-delay: .40s; }
        .odp-delay-6 { transition-delay: .48s; }
        .odp-delay-7 { transition-delay: .56s; }

        /* Use .odp-page as a scoping ancestor to outweigh Bootstrap's .container
           specificity without resorting to !important. */
        .odp-page.odp-hero-section {
            padding-top: 8.5rem;
        }

        html .body .odp-page.odp-hero-section .container {
            width: 100%;
            max-width: none;
            padding-left: 40px;
            padding-right: 40px;
        }

        html .body .odp-page.odp-wide-section .container {
            width: 100%;
            max-width: 1520px;
            padding-left: 40px;
            padding-right: 40px;
        }

        .odp-title,
        .odp-heading,
        .odp-section-title,
        .odp-position-title,
        .odp-subtitle,
        .odp-event-card h3 {
            color: #006b2e;
            font-weight: 800;
            letter-spacing: 0;
        }

        .odp-title {
            font-size: 2.75rem;
            line-height: 1.16;
        }

        .odp-heading,
        .odp-position-title {
            font-size: 2rem;
        }

        .odp-heading {
            display: inline-block;
            position: relative;
            padding-bottom: .65rem;
        }

        .odp-heading::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 310px;
            max-width: 100%;
            height: 3px;
            background: #ff8a00;
            transform: translateX(-50%);
        }

        .odp-section-title,
        .odp-subtitle {
            font-size: 1.3rem;
        }

        .odp-section-title {
            display: inline-block;
            position: relative;
            padding-bottom: .55rem;
        }

        .odp-section-title::after {
            content: "";
            position: absolute;
            left: -1.45rem;
            bottom: 0;
            width: 220px;
            max-width: 100%;
            height: 3px;
            background: #ff8a00;
        }

        .odp-subtitle {
            color: #ff8a00;
            font-weight: 800;
        }

        /* Interactive button text must meet WCAG AA (4.5:1 for normal text).
           #c96a00 on white = 4.52:1 (passes); the previous #ff8a00 was only 2.94:1. */
        .odp-more {
            color: #c96a00;
            font-weight: 800;
            background: transparent;
            border: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: .35rem;
            padding: 0;
            margin-bottom: 1.5rem;
            text-decoration: none;
            cursor: pointer;
            line-height: 1;
        }

        /* Visible keyboard-focus indicator for the More/Less toggle. */
        .odp-more:focus-visible {
            outline: 2px solid #006b2e;
            outline-offset: 3px;
            border-radius: 2px;
        }

        .odp-more::after {
            content: "";
            width: 8px;
            height: 8px;
            border-bottom: 2px solid #006b2e;
            border-right: 2px solid #006b2e;
            transform: rotate(45deg);
            transition: transform .25s ease;
            margin-bottom: 0;
        }

        .odp-more[aria-expanded="true"]::after {
            transform: rotate(-135deg);
            margin-bottom: 0;
            margin-top: .2rem;
        }

        .odp-copy,
        .odp-info-panel,
        .odp-position,
        .odp-testimonial-body {
            color: #444;
            font-size: 1rem;
            line-height: 1.48;
        }

        .odp-intro-image,
        .odp-event-image,
        .odp-event-hero,
        .odp-testimonial-photo {
            background: #f2f0f0;
            object-fit: cover;
        }

        .odp-intro-image {
            width: 100%;
            height: 253px;
            object-fit: cover;
            transition: transform .45s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
        }

        .odp-intro-image:hover {
            transform: scale(1.03);
            filter: brightness(1.03);
        }

        .odp-intro-images {
            display: grid;
            gap: 2.55rem;
        }

        .odp-hero-grid {
            display: grid;
            /*
             * Hero grid column breakdown (desktop ≥ 1400px):
             *   col-1 (350px) : intro images (two stacked photos)
             *   col-2 (310px) : intro text (title + description copy)
             *   col-3 (52px)  : vertical orange divider line
             *   col-4 (1fr)   : info panels (Purpose + Advantages), fills remaining space
             */
            --odp-hero-col-images : 350px;
            --odp-hero-col-text   : 310px;
            --odp-hero-col-divider: 52px;
            grid-template-columns: var(--odp-hero-col-images) var(--odp-hero-col-text) var(--odp-hero-col-divider) minmax(520px, 1fr);
            gap: 1.65rem;
            align-items: stretch;
            width: 100%;
            max-width: 1520px;
            margin: 0 auto;
        }

        @media (max-width: 1399px) and (min-width: 992px) {
            .odp-hero-grid {
                /* Scaled-down columns for medium-large viewports (992–1399px) */
                --odp-hero-col-images : 280px;
                --odp-hero-col-text   : 240px;
                --odp-hero-col-divider: 40px;
                grid-template-columns: var(--odp-hero-col-images) var(--odp-hero-col-text) var(--odp-hero-col-divider) minmax(360px, 1fr);
                gap: 1.25rem;
            }

            html .body .odp-hero-section .container,
            html .body .odp-wide-section .container {
                padding-left: 20px;
                padding-right: 20px;
            }

            .odp-info-panel {
                padding: 2rem 2.5rem;
            }

            /* Text column is fixed at 240px here, so shrink the title to keep
               the long word "DEVELOPMENT" inside it instead of overlapping
               the orange divider. */
            .odp-title {
                font-size: 1.9rem;
            }
        }

        .odp-copy {
            max-width: 275px;
            font-size: 1.12rem;
            font-weight: 500;
        }

        .odp-intro-content {
            align-self: start;
            padding-top: .15rem;
            min-width: 0;
        }

        .odp-info-column {
            display: grid;
            gap: 2.85rem;
        }

        .odp-info-panel {
            background: #f2eeee;
            padding: 2.35rem 4.1rem;
            margin-left: 0;
            position: relative;
            transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease;
        }

        .odp-info-panel:hover {
            background: #f5f1f1;
            box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
            transform: translateY(-4px);
        }

        .odp-purpose-panel {
            min-height: 212px;
        }

        .odp-advantages-panel {
            min-height: 312px;
        }

        .odp-info-panel p {
            font-size: 1.24rem;
            line-height: 1.24;
            font-weight: 500;
        }

        .odp-hero-divider {
            position: relative;
            display: grid;
            grid-template-rows: 1fr;
            justify-items: center;
            min-height: 560px;
        }

        .odp-divider-line {
            width: 3px;
            height: 100%;
            background: #ff8a00;
        }

        .odp-panel-icon {
            width: 47px;
            height: 47px;
            border-radius: 50%;
            background: #ff8a00;
            border: 2px solid #fff;
            box-shadow: 0 0 0 1px rgba(0, 107, 46, .35);
            position: absolute;
            left: -24px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;
            transition: transform .28s ease, box-shadow .28s ease;
        }

        .odp-info-panel:hover .odp-panel-icon {
            box-shadow: 0 0 0 4px rgba(255, 138, 0, .16), 0 8px 18px rgba(0, 0, 0, .14);
            transform: translateY(-50%) scale(1.05);
        }

        .odp-panel-icon::before,
        .odp-panel-icon::after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .odp-panel-icon-purpose::before {
            width: 17px;
            height: 17px;
            border: 2px solid #fff;
            border-radius: 50%;
            top: 42%;
        }

        .odp-panel-icon-purpose::after {
            width: 12px;
            height: 13px;
            border-left: 2px solid #fff;
            border-right: 2px solid #fff;
            border-bottom: 2px solid #fff;
            top: 61%;
        }

        .odp-panel-icon-advantages::before {
            width: 24px;
            height: 18px;
            border: 2px solid #fff;
            border-radius: 2px;
        }

        .odp-panel-icon-advantages::after {
            width: 10px;
            height: 6px;
            border: 2px solid #fff;
            border-bottom: 0;
            top: 36%;
        }

        .odp-position {
            background: transparent;
            border: 0;
            border-radius: 0;
            box-shadow: none;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 100%;
            padding: 0 .5rem;
            position: relative;
            text-align: center;
            transition: transform .28s ease;
            width: 100%;
            counter-reset: odp-qualification;
        }

        .odp-position:hover {
            transform: translateY(-3px);
        }

        .odp-position-head {
            border-bottom: 0;
            margin-bottom: .25rem;
            min-height: 0;
            padding-bottom: 0;
        }

        .odp-position-title {
            color: #55585f;
            font-size: 2.45rem;
            font-weight: 900;
            line-height: 1.08;
        }

        /* Scoped selector beats Bootstrap .mb-* utility without !important */
        .odp-position .odp-subtitle {
            color: #ff8a00;
            display: inline-block;
            font-size: 1.35rem;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 1.35rem;
            position: relative;
        }

        .odp-position .odp-subtitle::after {
            content: "";
            position: absolute;
            left: 50%;
            top: calc(100% + 1.15rem);
            width: 490px;
            max-width: calc(100vw - 4rem);
            height: 3px;
            background: #ff8a00;
            transform: translateX(-50%);
        }

        .odp-qualification-list ul,
        .odp-qualification-list ol {
            list-style: none;
            margin: 0;
            padding: 0;
            width: 100%;
        }

        .odp-main-qualification-list,
        .odp-main-qualification-list ul,
        .odp-main-qualification-list ol {
            margin-top: 1.85rem;
        }

        .odp-qualification-list li,
        .odp-qualification-list > p {
            list-style: none;
            margin: 0 0 1rem;
        }

        .odp-qualification-list li > :last-child,
        .odp-qualification-list > p > :last-child {
            margin-bottom: 0;
        }

        .odp-qualification::before,
        .odp-qualification-list li::before,
        .odp-qualification-list > p::before {
            counter-increment: odp-qualification;
            content: counter(odp-qualification);
            position: absolute;
            left: -21px;
            top: 50%;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: #ff8a00;
            border: 2px solid #fff;
            box-shadow: 0 0 0 1px rgba(0, 107, 46, .28), 0 7px 14px rgba(0, 0, 0, .12);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.18rem;
            font-weight: 800;
            line-height: 1;
            transform: translateY(-50%);
            transition: transform .28s ease, box-shadow .28s ease;
            z-index: 3;
        }

        .odp-qualification:hover::before,
        .odp-qualification-list li:hover::before,
        .odp-qualification-list > p:hover::before {
            box-shadow: 0 0 0 4px rgba(255, 138, 0, .16), 0 9px 18px rgba(0, 0, 0, .16);
            transform: translateY(-50%) scale(1.06);
        }

        .odp-wide-section .row {
            margin-left: -1.25rem;
            margin-right: -1.25rem;
        }

        .odp-wide-section .row > [class*="col-"] {
            padding-left: 1.25rem;
            padding-right: 1.25rem;
        }

        /* height:0 + overflow:hidden hides the element visually while keeping it
           in the DOM for screen readers. Scoped selector beats Bootstrap .mt-*/.mb-*. */
        .odp-position .odp-qualifications-group-title {
            height: 0;
            margin: 0;
            opacity: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .odp-qualification,
        .odp-qualification-list li,
        .odp-qualification-list > p {
            background: #eeeaea;
            color: #3d4048;
            font-weight: 800;
            line-height: 1.22;
            margin-bottom: 1.35rem;
            margin-left: 1.45rem;
            padding: .85rem 1.25rem .85rem 2.55rem;
            text-align: left;
            min-height: 48px;
            display: flex;
            align-items: center;
            box-sizing: border-box;
            position: relative;
            transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
            width: calc(100% - 1.45rem);
        }

        .odp-qualification::after,
        .odp-qualification-list li::after,
        .odp-qualification-list > p::after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: #006b2e;
            transform: scaleY(0);
            transition: transform .25s ease;
            z-index: 1;
        }

        .odp-more-content .odp-qualification-list li,
        .odp-more-content .odp-qualification-list > p {
            background: #eeeaea;
            color: #3d4048;
            opacity: 1;
        }

        .odp-qualification:hover,
        .odp-qualification-list li:hover,
        .odp-qualification-list > p:hover {
            background: #f7f3f3;
            box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
            transform: translateX(3px);
        }

        .odp-qualification:hover::after,
        .odp-qualification-list li:hover::after,
        .odp-qualification-list > p:hover::after {
            transform: scaleY(1);
        }

        .odp-position-actions {
            margin-top: auto;
            padding-top: .5rem;
        }

        .odp-more-content {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows .32s cubic-bezier(.22, 1, .36, 1);
        }

        .odp-more-content-inner {
            overflow: hidden;
            opacity: 0;
            transform: translateY(-8px);
            transition: opacity .25s ease, transform .25s ease;
        }

        .odp-position.is-more-open .odp-more-content {
            grid-template-rows: 1fr;
        }

        .odp-position.is-more-open .odp-more-content-inner {
            opacity: 1;
            transform: translateY(0);
            overflow: visible;
        }

        /* Double-scoped selector (.odp-position .btn) beats Bootstrap's .btn color
           without needing !important. Styled to match the testimonial "See More"
           toggle (.odp-testimonial-toggle) for a consistent CTA look. */
        /* custom.css forces .btn-modern / .btn-orange with !important
           (border-radius, padding, background, color), so these match the
           testimonial "See More" toggle look and need !important to win. */
        /* High-specificity selector (.odp-position .odp-position-actions a.btn = 0,3,1)
           beats skin-corporate-16.css's .btn:not(.btn-rounded):not(.btn-circle)
           (0,3,0) border-radius:0 !important so the rounded look applies. */
        .odp-position .odp-position-actions a.btn {
            display: block;
            width: fit-content;
            background: #ff8a00 !important;
            border: none !important;
            border-radius: 6px !important;
            color: #fff !important;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .05em;
            padding: .75rem 2.5rem !important;
            transition: background .2s ease !important;
        }

        .odp-position .odp-position-actions a.btn:hover,
        .odp-position .odp-position-actions a.btn:focus {
            background: #e67c00 !important;
            transform: none;
            box-shadow: none;
        }

        .odp-testimonial {
            background: #f2eeee;
            border-radius: 8px;
            overflow: visible;
            position: relative;
            transition: transform .28s ease, box-shadow .28s ease;
        }

        .odp-testimonial:hover {
            box-shadow: 0 18px 38px rgba(0, 0, 0, .1);
            transform: translateY(-4px);
        }

        .odp-testimonial-head {
            min-height: 185px;
            position: relative;
            display: flex;
            align-items: flex-end;
            background: #f2eeee;
            padding: 0 1.5rem 0 46%;
            border-radius: 8px 8px 0 0;
        }

        .odp-testimonial-photo {
            display: block;
            position: absolute;
            left: 1.5rem;
            bottom: 0;
            width: 40%;
            height: 250px;
            min-height: 0;
            object-fit: contain;
            object-position: bottom center;
            background: transparent;
            transform: none;
            z-index: 2;
            transition: transform .3s ease;
        }

        .odp-testimonial:hover .odp-testimonial-photo {
            transform: translateY(-4px);
        }

        .odp-testimonial-name {
            flex: 1;
            padding: 2rem 1rem 1.9rem;
            color: #222;
        }

        .odp-testimonial-name h3 {
            color: #111;
            font-size: 2.4rem;
            font-weight: 700;
            line-height: 1;
            letter-spacing: .02em;
        }

        .odp-testimonial-name p {
            color: #ff8a00;
            font-size: 1.15rem;
            font-weight: 600;
            line-height: 1.15;
            letter-spacing: .08em;
            text-transform: uppercase;
            margin-top: .35rem;
        }

        /* Dark text on the orange panel: #2d2d2d on #ff8a00 ≈ 6.5:1 (passes WCAG AA).
           White text here was only ~2.3:1 and failed for this body-size copy. */
        .odp-testimonial-body {
            position: relative;
            background: #ff8a00;
            color: #2d2d2d;
            padding: 2.5rem 2rem 1.75rem;
            min-height: 155px;
            text-align: center;
            font-size: .95rem;
            line-height: 1.65;
            border-radius: 0 0 8px 8px;
        }

        /* Decorative opening quote mark, subtle white on the orange panel */
        .odp-testimonial-body::before {
            content: "\201C";
            position: absolute;
            top: .35rem;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(45, 45, 45, .35);
            font-family: Georgia, "Times New Roman", serif;
            font-size: 3.25rem;
            line-height: 1;
        }

        /* Scoped to .odp-testimonial-body to beat Bootstrap's paragraph color reset */
        .odp-testimonial-body p {
            color: #2d2d2d;
            font-style: italic;
        }

        .odp-testimonial-row {
            margin-top: 4rem;
        }

        .odp-testimonial-row:not(.odp-show-all) .odp-testimonial-hidden {
            display: none;
        }

        .odp-testimonial-col {
            margin-bottom: 2.5rem;
        }

        .odp-testimonial-toggle {
            display: inline-block;
            background: #ff8a00;
            color: #fff;
            border: none;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .05em;
            padding: .75rem 2.5rem;
            border-radius: 6px;
            cursor: pointer;
            transition: background .2s ease;
        }

        .odp-testimonial-toggle:hover,
        .odp-testimonial-toggle:focus {
            background: #e67c00;
        }

        .odp-timeline {
            display: grid;
            /*
             * Timeline grid: 8 equal columns for up to 8 steps.
             * Each step alternates label position (top/bottom) via .odp-timeline-top
             * and .odp-timeline-bottom classes set per item in the DB (position field).
             * If the number of items changes, update this value to match.
             */
            --odp-timeline-columns: 8;
            grid-template-columns: repeat(var(--odp-timeline-columns), minmax(0, 1fr));
            min-height: 300px;
            position: relative;
            align-items: center;
            margin: 2rem auto 0;
            width: 100%;
        }

        .odp-timeline-item {
            --timeline-color: #ff8a00;
            min-height: 240px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .odp-timeline-item::before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            height: 4px;
            background: var(--timeline-color);
            transform: translateY(-50%);
        }

        .odp-timeline-number {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: var(--timeline-color);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.65rem;
            font-weight: 800;
            line-height: 1;
            position: relative;
            z-index: 2;
            box-shadow: 0 0 0 3px rgba(0, 0, 0, .08);
            transition: transform .28s ease, box-shadow .28s ease;
        }

        .odp-timeline-item:hover .odp-timeline-number {
            transform: translateY(-3px) scale(1.08);
            box-shadow: 0 10px 22px rgba(0, 0, 0, .18), 0 0 0 8px rgba(0, 107, 46, 0.2);
        }

        .odp-timeline-label-wrap {
            position: absolute;
            left: 50%;
            width: 190px;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }

        .odp-timeline-top .odp-timeline-label-wrap {
            bottom: calc(50% + 62px);
        }

        .odp-timeline-bottom .odp-timeline-label-wrap {
            top: calc(50% + 62px);
            flex-direction: column-reverse;
        }

        .odp-timeline-label-wrap::after {
            content: "";
            position: absolute;
            left: 50%;
            width: 3px;
            height: 33px;
            background: var(--timeline-color);
            transform: translateX(-50%);
        }

        .odp-timeline-top .odp-timeline-label-wrap::after {
            top: 100%;
        }

        .odp-timeline-bottom .odp-timeline-label-wrap::after {
            bottom: 100%;
        }

        .odp-timeline-label {
            color: var(--timeline-color);
            font-size: 1.2rem;
            font-weight: 800;
            line-height: 1.15;
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .odp-timeline-date {
            display: inline-block;
            font-size: .82rem;
            font-weight: 800;
            color: #ff8a00;
            background: #fff8f0;
            padding: .25rem .65rem;
            border-radius: 50px;
            border: 1px solid rgba(255, 138, 0, .18);
            line-height: 1;
            z-index: 2;
            position: relative;
        }

        .odp-timeline-red {
            --timeline-color: #f04423;
        }

        .odp-timeline-orange {
            --timeline-color: #ff8a00;
        }

        .odp-timeline-yellow {
            --timeline-color: #ffd400;
        }

        .odp-timeline-green {
            --timeline-color: #006b2e;
        }

        .odp-timeline-blue {
            --timeline-color: #168eea;
        }

        .odp-timeline-purple {
            --timeline-color: #8f45c6;
        }

        .odp-event-hero {
            background: #f2eeee;
            display: block;
            width: 100%;
            aspect-ratio: 2.05 / 1;
            height: auto;
            max-height: none;
            object-fit: cover;
            object-position: center center;
            transition: transform .42s ease, filter .42s ease;
        }

        .odp-event-hero:hover {
            filter: saturate(1.05) contrast(1.02);
            transform: translateY(-3px);
        }

        .odp-event-card h3 {
            font-size: 1.35rem;
            line-height: 1.2;
        }

        .odp-event-card {
            background: transparent;
            border: 0;
            display: block;
            padding: 0;
            text-align: left;
            width: 100%;
            transition: transform .28s ease;
            cursor: pointer;
        }

        .odp-event-card:hover,
        .odp-event-card:focus-visible {
            outline: none;
            transform: translateY(-4px);
        }

        .odp-event-image {
            aspect-ratio: 4 / 3;
            width: 100%;
            overflow: hidden;
            transition: transform .34s ease, box-shadow .28s ease;
        }

        .odp-event-image img {
            display: block;
            height: 100%;
            object-fit: cover;
            transition: transform .34s ease;
            width: 100%;
        }

        .odp-event-card:hover .odp-event-image {
            box-shadow: 0 14px 30px rgba(0, 0, 0, .1);
        }

        .odp-event-card:hover .odp-event-image img {
            transform: scale(1.045);
        }

        body.odp-gallery-open {
            overflow: hidden;
        }

        .odp-gallery-modal {
            align-items: center;
            display: flex;
            inset: 0;
            justify-content: center;
            opacity: 0;
            padding: 2rem;
            pointer-events: none;
            position: fixed;
            transition: opacity .25s ease;
            z-index: 9999;
        }

        .odp-gallery-modal.is-open {
            opacity: 1;
            pointer-events: auto;
        }

        .odp-gallery-backdrop {
            background: rgba(0, 0, 0, .62);
            inset: 0;
            position: absolute;
        }

        .odp-gallery-dialog {
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
            max-height: calc(100vh - 4rem);
            max-width: 980px;
            overflow: auto;
            padding: 1.5rem;
            position: relative;
            transform: translateY(18px) scale(.98);
            transition: transform .25s ease;
            width: min(100%, 980px);
            z-index: 2;
        }

        .odp-gallery-modal.is-open .odp-gallery-dialog {
            transform: translateY(0) scale(1);
        }

        .odp-gallery-close {
            align-items: center;
            background: #ff8a00;
            border: 0;
            border-radius: 50%;
            color: #fff;
            display: inline-flex;
            font-size: 1.8rem;
            font-weight: 700;
            height: 42px;
            justify-content: center;
            line-height: 1;
            position: absolute;
            right: 1rem;
            top: 1rem;
            width: 42px;
            z-index: 3;
        }

        .odp-gallery-title {
            color: #006b2e;
            font-size: 1.85rem;
            font-weight: 800;
            padding-right: 3rem;
        }

        .odp-gallery-count {
            color: #555;
            font-weight: 600;
        }

        .odp-gallery-stage {
            background: #f2eeee;
            margin-top: 1.25rem;
            position: relative;
        }

        .odp-gallery-main {
            aspect-ratio: 16 / 9;
            display: block;
            object-fit: cover;
            width: 100%;
        }

        .odp-gallery-nav {
            align-items: center;
            background: rgba(0, 107, 46, .88);
            border: 0;
            border-radius: 50%;
            color: #fff;
            display: inline-flex;
            font-size: 2.4rem;
            height: 46px;
            justify-content: center;
            line-height: 1;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 46px;
            z-index: 2;
        }

        .odp-gallery-prev {
            left: 1rem;
        }

        .odp-gallery-next {
            right: 1rem;
        }

        /* Visible keyboard-focus indicator for the gallery's icon buttons. */
        .odp-gallery-close:focus-visible,
        .odp-gallery-nav:focus-visible {
            outline: 3px solid #fff;
            outline-offset: 2px;
            box-shadow: 0 0 0 5px rgba(0, 107, 46, .9);
        }

        .odp-gallery-thumbs {
            display: flex;
            gap: .85rem;
            overflow-x: auto;
            margin-top: 1rem;
            padding-bottom: .5rem;
            scrollbar-width: thin;
        }

        .odp-gallery-thumb {
            background: #f2eeee;
            border: 3px solid transparent;
            padding: 0;
            transition: border-color .2s ease, transform .2s ease;
            flex: 0 0 100px;
        }

        .odp-gallery-thumb.is-active {
            border-color: #ff8a00;
        }

        .odp-gallery-thumb:hover,
        .odp-gallery-thumb:focus-visible {
            border-color: #006b2e;
            outline: none;
            transform: translateY(-2px);
        }

        .odp-gallery-thumb img {
            aspect-ratio: 16 / 9;
            display: block;
            object-fit: cover;
            width: 100%;
        }

        /* Lift the scroll-to-top button above the floating WhatsApp button so
           they don't overlap (WhatsApp sits at bottom:28px and is ~67px tall on
           desktop). Rounded like a floating button. The mobile media query below
           lowers it to clear the smaller mobile WhatsApp button. */
        html .scroll-to-top.hidden-mobile {
            bottom: 105px;
            right: 18px;
            height: auto;
            padding: 11px 10px;
            border-radius: 6px !important;
        }

        @media (max-width: 991px) {
            /* The Porto theme hides the scroll-to-top button on mobile
               (.scroll-to-top.hidden-mobile { display:none }). Show it here and
               lift it above the floating WhatsApp button so they don't overlap. */
            html .scroll-to-top.hidden-mobile {
                display: block !important;
                bottom: 84px;
                right: 12px;
                height: auto;
                padding: 11px 10px;
                border-radius: 6px !important;
            }

            .odp-page.odp-hero-section {
                padding-top: 7rem;
            }

            html .body .odp-page.odp-hero-section .container {
                width: 100%;
                max-width: 720px;
                padding-left: 18px;
                padding-right: 18px;
            }

            html .body .odp-page.odp-wide-section .container {
                max-width: 720px;
                padding-left: 18px;
                padding-right: 18px;
            }

            .odp-info-panel {
                padding: 2rem;
            }

            /* The panel icon sticks out 24px to the left (left: -24px); on a
               single-column mobile layout it would run off the screen edge.
               Indent the info column so the icons stay fully on-screen. */
            .odp-info-column {
                margin-left: 22px;
            }

            .odp-hero-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .odp-hero-divider {
                display: none;
            }

            .odp-title {
                font-size: 2rem;
            }

            .odp-copy {
                max-width: none;
            }

            .odp-testimonial-photo {
                height: 225px;
            }

            .odp-position {
                padding: 1.75rem;
            }

            .odp-position-head {
                min-height: auto;
            }

            .odp-testimonial-name h3 {
                font-size: 2rem;
            }

            .odp-testimonial-name p {
                font-size: 1.15rem;
            }

            /* Mobile timeline becomes a horizontal-scroll grid. Only the properties
               that actually differ from the desktop rules are overridden here;
               shared layout (flex item geometry, connector lines, top/bottom
               label offsets direction) is inherited from the base rules above. */
            .odp-timeline {
                grid-template-columns: repeat(var(--odp-timeline-columns, 8), 160px);
                overflow-x: auto;
                scrollbar-width: thin;
                padding-bottom: 1.5rem;
                margin: 2rem 0 0;
            }

            .odp-timeline-number {
                width: 44px;
                height: 44px;
                font-size: 1.25rem;
                flex-shrink: 0;
                box-shadow: 0 0 0 3px #fff;
            }

            .odp-timeline-label-wrap {
                width: 140px;
            }

            .odp-timeline-top .odp-timeline-label-wrap {
                bottom: calc(50% + 50px);
            }

            .odp-timeline-bottom .odp-timeline-label-wrap {
                top: calc(50% + 50px);
            }

            .odp-timeline-label {
                font-size: .95rem;
            }
        }

        @media (max-width: 575px) {
            .odp-position {
                padding: 1.25rem;
            }

            .odp-position-title {
                font-size: 1.45rem;
                line-height: 1.18;
            }

            .odp-subtitle {
                font-size: 1.08rem;
            }

            .odp-qualification,
            .odp-qualification-list li,
            .odp-qualification-list > p {
                padding: .9rem 1rem .9rem 2.85rem;
            }

            .odp-testimonial-head {
                min-height: 140px;
                display: flex;
                flex-direction: row;
                align-items: flex-end;
                text-align: left;
                padding: 0 1rem 0 38%;
            }

            .odp-testimonial-photo {
                position: absolute;
                left: 1rem;
                bottom: 0;
                width: 32%;
                height: 180px;
                object-fit: contain;
                object-position: bottom center;
                background: transparent;
                z-index: 2;
                transform: none;
            }

            .odp-testimonial-name {
                padding: 1rem 0;
                flex: 1;
            }

            .odp-testimonial-name h3 {
                font-size: 1.35rem;
                line-height: 1.1;
            }

            .odp-testimonial-name p {
                font-size: 0.9rem;
                line-height: 1.15;
            }



            .odp-gallery-modal {
                padding: 1rem;
            }

            .odp-gallery-dialog {
                max-height: calc(100vh - 2rem);
                padding: 1rem;
            }

            .odp-gallery-title {
                font-size: 1.35rem;
            }

            .odp-gallery-nav {
                height: 38px;
                width: 38px;
            }


        }

        @media (prefers-reduced-motion: reduce) {
            .odp-reveal,
            .odp-intro-image,
            .odp-info-panel,
            .odp-panel-icon,
            .odp-position,
            .odp-qualification,
            .odp-testimonial,
            .odp-testimonial-photo,
            .odp-timeline-number,
            .odp-event-hero,
            .odp-event-card,
            .odp-event-image {
                opacity: 1 !important;
                transform: none !important;
                transition: none !important;
                animation: none !important;
            }
        }
