:root {
    --navy: #061d39;
    --blue: #0078bf;
    --cyan: #00a8e8;
    --green: #9bd01e;
    --teal: #008b8b;
    --light: #f4f7fa;
    --ink: #07213f;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: #fff;
}

.dbs-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}


/* =========================================================
   HEADER
   ========================================================= */

.dbs-header {
    background: var(--navy);
    color: #fff;
}

.dbs-header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.dbs-brand {
    color: #fff;
    text-decoration: none;
    line-height: 1;
    min-width: 210px;
}

.dbs-brand span,
.dbs-brand strong {
    display: block;
    font-weight: 900;
    letter-spacing: .8px;
}

.dbs-brand strong {
    color: var(--green);
}

.dbs-brand em {
    display: block;
    font-style: normal;
    font-size: 12px;
    margin-top: 5px;
}

.dbs-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.dbs-menu a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
}

.dbs-menu a:hover {
    color: var(--green);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.dbs-header-button,
.dbs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    padding: 13px 20px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .3px;
    font-size: 13px;
}

.dbs-header-button,
.dbs-button.green {
    background: var(--green);
    color: var(--navy);
}

.dbs-button.outline {
    border: 2px solid rgba(255,255,255,.75);
    color: #fff;
    background: transparent;
}

.dbs-button.dark {
    background: var(--navy);
    color: #fff;
}

.dbs-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* =========================================================
   HERO
   ========================================================= */

.dbs-hero {
    min-height: 430px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.dbs-hero-content {
    color: #fff;
}

.dbs-hero h1 {
    font-size: 58px;
    line-height: .98;
    margin: 0 0 18px;
    max-width: 640px;
}

.dbs-hero h1 span {
    display: block;
}

.dbs-hero p {
    font-size: 22px;
    line-height: 1.35;
    max-width: 520px;
    margin: 0 0 26px;
}


/* =========================================================
   WHY CHOOSE DERWENTHAUGH
   ========================================================= */

.dbs-why {
    padding: 42px 24px;
    text-align: center;
}

.dbs-why h2,
.dbs-section-block h2 {
    font-size: 30px;
    margin: 0 0 8px;
    color: var(--navy);
    letter-spacing: .7px;
}

.dbs-why p,
.dbs-section-intro {
    margin: 0 auto 28px;
    max-width: 760px;
    font-size: 17px;
}

.dbs-card-grid {
    display: grid;
    gap: 22px;
}

.dbs-card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.dbs-card-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.dbs-card-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Feature cards */
.dbs-feature-card {
    position: relative;
    color: #fff;
    text-align: left;
    padding: 24px 30px 28px;
    border-radius: 4px;
    min-height: 210px;
}

/* Remove decorative numbered circles / pseudo elements */
.dbs-feature-card::before,
.dbs-feature-card::after {
    display: none !important;
    content: none !important;
}

.dbs-feature-card.blue {
    background: #0089c8;
}

.dbs-feature-card.green {
    background: #8dbb1c;
}

.dbs-feature-card.teal {
    background: #008b8b;
}

/* Hide card icon/circle area completely */
.dbs-feature-card .dbs-card-icon {
    display: none !important;
}

.dbs-feature-card h3 {
    font-size: 22px;
    line-height: 1.08;
    margin: 0 0 14px;
    color: #fff;
}

.dbs-feature-card ul,
.dbs-white-card ul {
    margin: 0;
    padding-left: 18px;
}

.dbs-feature-card li,
.dbs-white-card li {
    margin: 7px 0;
}


/* =========================================================
   HOME IMAGE STRIP
   ========================================================= */

.dbs-image-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.dbs-image-strip img {
    width: 100%;
    height: 155px;
    object-fit: cover;
    display: block;
}


/* =========================================================
   HOME NEEDS SECTION
   ========================================================= */

.dbs-home-needs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: #0078bf;
}

.dbs-home-needs.reverse {
    direction: rtl;
}

.dbs-home-needs.reverse > * {
    direction: ltr;
}

.dbs-needs-text {
    color: #fff;
    padding: 42px 8vw 42px max(24px, calc((100vw - 1180px)/2 + 24px));
}

.dbs-needs-text h2 {
    font-size: 32px;
    line-height: 1.05;
    margin: 0 0 22px;
    color: #fff;
}

.dbs-home-needs > img {
    width: min(500px, 90%);
    height: 350px;
    object-fit: cover;
    justify-self: center;
    display: block;
}

.dbs-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dbs-check-list li {
    position: relative;
    padding-left: 30px;
    margin: 12px 0;
}

.dbs-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--green);
    font-weight: 900;
}


/* =========================================================
   QUOTE SECTION
   ========================================================= */

.dbs-quote-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: #062846;
}

.dbs-quote-row.reverse {
    direction: rtl;
}

.dbs-quote-row.reverse > * {
    direction: ltr;
}

.dbs-quote-row blockquote {
    margin: 0;
    padding: 45px 8vw 45px max(24px, calc((100vw - 1180px)/2 + 24px));
    color: #fff;
    font-size: 22px;
    line-height: 1.4;
}

.dbs-quote-row cite {
    display: block;
    font-size: 14px;
    margin-top: 12px;
    font-style: normal;
}

.qmark {
    font-size: 52px;
    color: var(--cyan);
    font-weight: 900;
}

.qmark.right {
    float: right;
}

.dbs-quote-row img {
    width: min(500px, 90%);
    height: 350px;
    object-fit: cover;
    justify-self: center;
    display: block;
}


/* =========================================================
   BOTTOM CTA
   ========================================================= */

.dbs-bottom-cta {
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px max(24px, calc((100vw - 1180px)/2 + 24px));
}

.dbs-bottom-cta h2 {
    margin: 0 0 5px;
    font-size: 28px;
    color: var(--navy);
}

.dbs-bottom-cta p {
    margin: 0;
}


/* =========================================================
   MAIN FOOTER
   ========================================================= */

.dbs-footer {
    background: var(--navy);
    color: #fff;
    padding: 28px 0;
}

.dbs-footer-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dbs-footer-copy {
    flex: 1 1 340px;
    min-width: 280px;
    margin-right: 8px;
}

.dbs-footer-copy strong {
    color: #fff;
    font-size: 22px;
}

.dbs-footer-copy p {
    margin: 7px 0 0;
    color: #d7e8f4;
    max-width: 360px;
}

/* Organisation logos */
.dbs-footer-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
}

.dbs-footer-logo a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: inherit;
    text-decoration: none;
}

.dbs-footer-logo img {
    width: auto;
    height: 82px;
    max-width: 135px;
    object-fit: contain;
    display: block;
}

.dbs-footer-logo span {
    max-width: 115px;
    line-height: 1.2;
}

/* Facebook */
.dbs-footer-facebook {
    margin-left: 2px;
}

.dbs-footer-facebook a {
    display: block;
    line-height: 0;
}

.dbs-footer-facebook img {
    width: 64px;
    height: 64px;
    max-width: none;
    object-fit: contain;
}


/* =========================================================
   SUBHERO
   ========================================================= */

.dbs-subhero {
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.dbs-subhero h1 {
    font-size: 48px;
    line-height: 1.05;
    margin: 0 0 12px;
    max-width: 720px;
}

.dbs-subhero p {
    font-size: 20px;
    max-width: 560px;
}


/* =========================================================
   SECTION CARDS
   ========================================================= */

.dbs-section-block {
    padding: 42px 24px;
}

.dbs-section-block:nth-of-type(odd) {
    background: #fff;
}

.dbs-white-card {
    border: 1px solid #d7dce2;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(5,30,57,.08);
}

.dbs-white-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: #dcecf4;
}

.dbs-page-facilities .dbs-white-card img {
    height: 300px;
}

.dbs-white-card h3 {
    font-size: 18px;
    color: #005f9a;
    margin: 18px 18px 10px;
    text-transform: uppercase;
}

.dbs-white-card ul {
    margin: 0 18px 20px;
}


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

.dbs-contact-layout {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 32px;
    padding-top: 44px;
    padding-bottom: 44px;
}

.dbs-contact-form,
.dbs-location {
    background: #fff;
    border: 1px solid #dbe1e7;
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(5,30,57,.08);
}

.dbs-contact-form h2,
.dbs-location h2 {
    margin-top: 0;
    color: #005f9a;
}

.dbs-contact-form input,
.dbs-contact-form textarea,
.dbs-contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5df;
    border-radius: 3px;
}

.dbs-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: 6px;
}

.dbs-finding {
    background: var(--navy);
    color: #fff;
    padding: 22px;
    border-radius: 6px;
    margin-top: 20px;
}


/* =========================================================
   BASIC PAGE
   ========================================================= */

.dbs-basic-page {
    padding-top: 50px;
    padding-bottom: 50px;
}

.screen-reader-text {
    position: absolute;
    left: -999em;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .dbs-header-inner {
        flex-wrap: wrap;
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .dbs-menu {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 14px;
    }

    .dbs-hero h1 {
        font-size: 42px;
    }

    .dbs-card-grid.three,
    .dbs-card-grid.cols-4,
    .dbs-card-grid.cols-2,
    .dbs-home-needs,
    .dbs-quote-row,
    .dbs-contact-layout {
        grid-template-columns: 1fr;
    }

    .dbs-image-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .dbs-bottom-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .dbs-subhero h1 {
        font-size: 38px;
    }

    .dbs-home-needs > img,
    .dbs-quote-row img {
        width: min(500px, 90%);
        height: 340px;
        margin: 28px auto;
    }

    .dbs-footer-inner {
        flex-wrap: wrap;
        gap: 18px;
    }

    .dbs-footer-copy {
        flex: 0 0 100%;
        margin-right: 0;
    }

    .dbs-footer-logo img {
        height: 72px;
        max-width: 125px;
    }

    .dbs-footer-facebook img {
        width: 58px;
        height: 58px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .dbs-wrap {
        padding: 0 16px;
    }

    .dbs-hero {
        min-height: 360px;
    }

    .dbs-hero h1 {
        font-size: 32px;
    }

    .dbs-hero p {
        font-size: 17px;
    }

    .dbs-image-strip {
        grid-template-columns: 1fr;
    }

    .dbs-needs-text,
    .dbs-quote-row blockquote {
        padding: 32px 18px;
    }

    .dbs-header-button {
        width: 100%;
    }

    .dbs-menu a {
        font-size: 11px;
    }

    .dbs-feature-card {
        padding: 22px;
        min-height: auto;
    }

    .dbs-home-needs > img,
    .dbs-quote-row img {
        width: calc(100% - 32px);
        height: 280px;
        margin: 20px 16px;
    }

    .dbs-footer-inner {
        justify-content: flex-start;
        gap: 14px;
    }

    .dbs-footer-logo img {
        height: 64px;
        max-width: 110px;
    }

    .dbs-footer-facebook img {
        width: 52px;
        height: 52px;
    }
}

/* Layout-preserving refinements requested 2026-06-29 */
.dbs-page-home .dbs-hero{background-position:left center}
.dbs-home-needs>img,.dbs-quote-row>img{height:400px;max-height:400px;min-height:0;object-fit:cover}
.dbs-home-needs.reverse .dbs-needs-text,.dbs-quote-row.reverse blockquote{order:2}
.dbs-home-needs.reverse>img,.dbs-quote-row.reverse>img{order:1}
.dbs-page-facilities .dbs-white-card img{height:300px}
@media(max-width:900px){.dbs-home-needs>img,.dbs-quote-row>img{height:320px;max-height:320px}.dbs-page-facilities .dbs-white-card img{height:260px}}

/* Plan and Book layout: closer to supplied layout image, editable fields remain separate */
.dbs-plan-clean .dbs-plan-section{padding-top:48px;padding-bottom:54px}
.dbs-plan-clean h2{font-size:30px;line-height:1.1;margin:0 0 26px;font-weight:900;text-transform:uppercase;letter-spacing:.4px}
.dbs-plan-visit-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.dbs-plan-visit-grid>a{color:inherit;text-decoration:none}
.dbs-plan-visit-card{min-height:250px;border:1px solid #cfddea;border-radius:6px;background:#fff;padding:26px 24px;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;box-shadow:none;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease}
.dbs-plan-visit-grid>a:hover .dbs-plan-visit-card{transform:translateY(-2px);box-shadow:0 8px 20px rgba(5,30,57,.10);border-color:#99bedc}
.dbs-plan-icon{font-size:54px;line-height:1;color:var(--navy);display:block;margin:0 0 22px;font-weight:900}
.dbs-plan-icon-img{width:58px;height:58px;object-fit:contain;margin:0 0 22px}
.dbs-plan-visit-card h3{margin:0 0 14px;color:#0078bf;font-size:20px;line-height:1.05;text-transform:uppercase;font-weight:900}
.dbs-plan-visit-card p{margin:0;max-width:210px;color:var(--ink);font-size:17px;line-height:1.18}
.dbs-plan-enquiry{background:#f1f6fa;padding:54px 0}
.dbs-plan-two-lists{display:grid;grid-template-columns:1fr 1fr;gap:80px;max-width:1050px}
.dbs-plan-two-lists .dbs-check-list li{font-size:18px;margin:13px 0;color:var(--ink)}
.dbs-plan-docs{padding-top:54px;padding-bottom:54px}
.dbs-plan-docs .dbs-section-intro.left{margin:0 0 18px;max-width:none;text-align:left}
.dbs-doc-grid{display:grid;grid-template-columns:1fr 1fr;gap:0 14px}
.dbs-doc-row{display:grid;grid-template-columns:1fr auto;align-items:center;gap:24px;border-bottom:1px solid #cfddea;padding:16px 0;color:#06305c;font-size:17px}
.dbs-doc-row strong{font-weight:900}
.dbs-doc-row a,.dbs-doc-row span{font-weight:900;color:#003c75;text-decoration:none}
.dbs-doc-row a:hover{text-decoration:underline}
.dbs-plan-cta .dbs-button.outline{border-color:#fff;color:#fff;min-width:174px}
.dbs-plan-cta .dbs-button.outline:hover{background:#fff;color:var(--navy)}
@media(max-width:900px){.dbs-plan-visit-grid{grid-template-columns:repeat(2,1fr)}.dbs-plan-two-lists,.dbs-doc-grid{grid-template-columns:1fr;gap:0}.dbs-plan-clean .dbs-plan-section,.dbs-plan-enquiry,.dbs-plan-docs{padding-top:38px;padding-bottom:38px}}
@media(max-width:520px){.dbs-plan-visit-grid{grid-template-columns:1fr}.dbs-plan-visit-card{min-height:0}.dbs-plan-clean h2{font-size:25px}.dbs-doc-row{grid-template-columns:1fr;gap:6px}}

/* Section heading alignment controls */
.dbs-headings-left .dbs-why,
.dbs-headings-left .dbs-section-block,
.dbs-headings-left .dbs-plan-section,
.dbs-headings-left .dbs-plan-enquiry .dbs-wrap,
.dbs-headings-left .dbs-plan-docs,
.dbs-headings-left .dbs-contact-form,
.dbs-headings-left .dbs-location{text-align:left}
.dbs-headings-center .dbs-why,
.dbs-headings-center .dbs-section-block,
.dbs-headings-center .dbs-plan-section,
.dbs-headings-center .dbs-plan-enquiry .dbs-wrap,
.dbs-headings-center .dbs-plan-docs,
.dbs-headings-center .dbs-contact-form,
.dbs-headings-center .dbs-location{text-align:center}
.dbs-headings-center .dbs-why p,.dbs-headings-center .dbs-section-intro{margin-left:auto;margin-right:auto}
.dbs-headings-center .dbs-card-grid,.dbs-headings-center .dbs-plan-visit-grid{text-align:center}
.dbs-headings-center .dbs-plan-two-lists,.dbs-headings-center .dbs-plan-doc-grid{text-align:left}

/* Restore home lower images as fixed image panels rather than full-bleed fills */
.dbs-home-needs,.dbs-quote-row{align-items:center}
.dbs-home-needs{background:#0078bf;padding:36px max(24px,calc((100vw - 1180px)/2 + 24px));gap:34px}
.dbs-home-needs .dbs-needs-text{background:transparent;padding:0}
.dbs-home-needs>img,.dbs-quote-row>img{width:min(500px,100%);height:350px;max-height:350px;min-height:0;object-fit:cover;justify-self:center;align-self:center;border-radius:4px;display:block}
.dbs-quote-row{padding:36px max(24px,calc((100vw - 1180px)/2 + 24px));gap:34px}
.dbs-quote-row blockquote{padding:0}
@media(max-width:900px){.dbs-home-needs,.dbs-quote-row{padding:30px 24px}.dbs-home-needs>img,.dbs-quote-row>img{width:100%;height:300px;max-height:300px}}


/* Heading alignment fix: apply the page setting directly to all visible headings and intro text. */
.dbs-headings-left .dbs-hero-content,
.dbs-headings-left .dbs-subhero .dbs-wrap,
.dbs-headings-left .dbs-why,
.dbs-headings-left .dbs-section-block,
.dbs-headings-left .dbs-plan-section,
.dbs-headings-left .dbs-plan-enquiry .dbs-wrap,
.dbs-headings-left .dbs-plan-docs,
.dbs-headings-left .dbs-contact-form,
.dbs-headings-left .dbs-location{ text-align:left !important; }

.dbs-headings-center .dbs-hero-content,
.dbs-headings-center .dbs-subhero .dbs-wrap,
.dbs-headings-center .dbs-why,
.dbs-headings-center .dbs-section-block,
.dbs-headings-center .dbs-plan-section,
.dbs-headings-center .dbs-plan-enquiry .dbs-wrap,
.dbs-headings-center .dbs-plan-docs,
.dbs-headings-center .dbs-contact-form,
.dbs-headings-center .dbs-location{ text-align:center !important; }

.dbs-headings-right .dbs-hero-content,
.dbs-headings-right .dbs-subhero .dbs-wrap,
.dbs-headings-right .dbs-why,
.dbs-headings-right .dbs-section-block,
.dbs-headings-right .dbs-plan-section,
.dbs-headings-right .dbs-plan-enquiry .dbs-wrap,
.dbs-headings-right .dbs-plan-docs,
.dbs-headings-right .dbs-contact-form,
.dbs-headings-right .dbs-location{ text-align:right !important; }

.dbs-headings-left .dbs-hero p,
.dbs-headings-left .dbs-subhero p,
.dbs-headings-left .dbs-why p,
.dbs-headings-left .dbs-section-intro{ margin-left:0 !important; margin-right:auto !important; }
.dbs-headings-center .dbs-hero p,
.dbs-headings-center .dbs-subhero p,
.dbs-headings-center .dbs-why p,
.dbs-headings-center .dbs-section-intro{ margin-left:auto !important; margin-right:auto !important; }
.dbs-headings-right .dbs-hero p,
.dbs-headings-right .dbs-subhero p,
.dbs-headings-right .dbs-why p,
.dbs-headings-right .dbs-section-intro{ margin-left:auto !important; margin-right:0 !important; }

.dbs-headings-left .dbs-actions{ justify-content:flex-start !important; }
.dbs-headings-center .dbs-actions{ justify-content:center !important; }
.dbs-headings-right .dbs-actions{ justify-content:flex-end !important; }

/* Keep card/body lists readable even when headings are centered/right aligned. */
.dbs-headings-center .dbs-feature-card,
.dbs-headings-center .dbs-white-card,
.dbs-headings-center .dbs-plan-two-lists,
.dbs-headings-center .dbs-plan-doc-grid,
.dbs-headings-right .dbs-feature-card,
.dbs-headings-right .dbs-white-card,
.dbs-headings-right .dbs-plan-two-lists,
.dbs-headings-right .dbs-plan-doc-grid{ text-align:left !important; }

/* Heading placement fix: left/centre/right now moves the banner text block itself, not only text alignment. */
.dbs-hero .dbs-hero-content,
.dbs-subhero .dbs-wrap{
  width:100%;
}
.dbs-headings-left .dbs-hero .dbs-hero-content,
.dbs-headings-left .dbs-subhero .dbs-wrap{
  max-width:760px !important;
  margin-left:0 !important;
  margin-right:auto !important;
  padding-left:clamp(22px,4vw,64px) !important;
  padding-right:24px !important;
  text-align:left !important;
}
.dbs-headings-center .dbs-hero .dbs-hero-content,
.dbs-headings-center .dbs-subhero .dbs-wrap{
  max-width:900px !important;
  margin-left:auto !important;
  margin-right:auto !important;
  padding-left:24px !important;
  padding-right:24px !important;
  text-align:center !important;
}
.dbs-headings-right .dbs-hero .dbs-hero-content,
.dbs-headings-right .dbs-subhero .dbs-wrap{
  max-width:760px !important;
  margin-left:auto !important;
  margin-right:0 !important;
  padding-left:24px !important;
  padding-right:clamp(22px,4vw,64px) !important;
  text-align:right !important;
}
.dbs-headings-center .dbs-hero h1,
.dbs-headings-center .dbs-hero p,
.dbs-headings-center .dbs-subhero h1,
.dbs-headings-center .dbs-subhero p{
  margin-left:auto !important;
  margin-right:auto !important;
}
.dbs-headings-right .dbs-hero h1,
.dbs-headings-right .dbs-hero p,
.dbs-headings-right .dbs-subhero h1,
.dbs-headings-right .dbs-subhero p{
  margin-left:auto !important;
  margin-right:0 !important;
}
.dbs-headings-left .dbs-hero h1,
.dbs-headings-left .dbs-hero p,
.dbs-headings-left .dbs-subhero h1,
.dbs-headings-left .dbs-subhero p{
  margin-left:0 !important;
  margin-right:auto !important;
}
@media(max-width:900px){
  .dbs-headings-left .dbs-hero .dbs-hero-content,
  .dbs-headings-center .dbs-hero .dbs-hero-content,
  .dbs-headings-right .dbs-hero .dbs-hero-content,
  .dbs-headings-left .dbs-subhero .dbs-wrap,
  .dbs-headings-center .dbs-subhero .dbs-wrap,
  .dbs-headings-right .dbs-subhero .dbs-wrap{
    max-width:none !important;
    margin-left:0 !important;
    margin-right:0 !important;
    padding-left:22px !important;
    padding-right:22px !important;
  }
}

/* Activity information detail template */
.dbs-page-activity-info .dbs-subhero .dbs-actions{margin-top:22px}.dbs-activity-jump{background:#fff;border-bottom:1px solid #e2e8ef;box-shadow:0 4px 18px rgba(4,30,57,.06);position:sticky;top:0;z-index:6}.dbs-activity-jump .dbs-wrap{display:flex;align-items:center;gap:0;overflow-x:auto;white-space:nowrap;padding-top:18px;padding-bottom:18px}.dbs-activity-jump strong{color:#0078bf;margin-right:22px;font-size:14px;text-transform:uppercase;letter-spacing:.4px}.dbs-activity-jump a{color:#0078bf;text-decoration:none;font-weight:800;font-size:13px;padding:0 20px;border-left:1px solid #d8e4ee}.dbs-activity-jump a:hover{color:#8dbb1c}.dbs-activity-detail{padding:54px 0}.dbs-activity-bg-soft{background:#f4f8fb}.dbs-activity-bg-white{background:#fff}.dbs-activity-detail-inner{display:grid;grid-template-columns:1.1fr 1.1fr 230px;gap:34px;align-items:center}.dbs-activity-layout-text-left .dbs-activity-copy{order:1}.dbs-activity-layout-text-left .dbs-activity-media{order:2}.dbs-activity-layout-text-left .dbs-activity-facts{order:3}.dbs-activity-layout-image-left .dbs-activity-media{order:1}.dbs-activity-layout-image-left .dbs-activity-copy{order:2}.dbs-activity-layout-image-left .dbs-activity-facts{order:3}.dbs-activity-layout-full .dbs-activity-detail-inner{grid-template-columns:1fr}.dbs-activity-layout-full .dbs-activity-facts{max-width:680px}.dbs-kicker{display:block;color:#0078bf;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.6px;margin-bottom:10px}.dbs-activity-copy h2{font-size:34px;line-height:1.05;margin:0 0 16px;color:#061d39;text-transform:uppercase}.dbs-activity-text{font-size:16px;line-height:1.55;max-width:560px;border-bottom:1px solid #dbe4ed;margin-bottom:18px;padding-bottom:15px}.dbs-activity-media iframe{width:100%;aspect-ratio:16/9;height:auto;border:0}.dbs-activity-main-img{width:100%;height:310px;object-fit:cover;border-radius:3px;box-shadow:0 8px 24px rgba(5,30,57,.1)}.dbs-activity-gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:14px}.dbs-activity-gallery img{width:100%;height:74px;object-fit:cover;border-radius:2px}.dbs-activity-facts{background:#fff;border:1px solid #e2e8ef;box-shadow:0 8px 24px rgba(5,30,57,.08);padding:20px}.dbs-activity-facts div{display:grid;grid-template-columns:30px 1fr;gap:4px 10px;padding:14px 0;border-bottom:1px solid #e2e8ef}.dbs-activity-facts div:last-child{border-bottom:0}.dbs-fact-icon{grid-row:1 / span 2;color:#0078bf;font-weight:900;font-size:20px}.dbs-activity-facts strong{font-size:11px;text-transform:uppercase;color:#061d39}.dbs-activity-facts em{font-size:13px;font-style:normal;color:#061d39}.dbs-button.dark-outline{border:2px solid #0b315a;color:#0b315a;background:#fff}.dbs-activity-info-cta{background:#9bd01e}.dbs-activity-info-cta .dbs-button.dark{background:#061d39;color:#fff}
@media(max-width:1000px){.dbs-activity-detail-inner{grid-template-columns:1fr}.dbs-activity-layout-text-left .dbs-activity-copy,.dbs-activity-layout-image-left .dbs-activity-copy,.dbs-activity-layout-text-left .dbs-activity-media,.dbs-activity-layout-image-left .dbs-activity-media,.dbs-activity-layout-text-left .dbs-activity-facts,.dbs-activity-layout-image-left .dbs-activity-facts{order:initial}.dbs-activity-main-img{height:260px}.dbs-activity-jump{position:relative}.dbs-activity-jump .dbs-wrap{align-items:flex-start}.dbs-activity-jump strong{display:block;margin-right:12px}.dbs-activity-jump a{padding:0 12px}}
@media(max-width:560px){.dbs-activity-detail{padding:36px 0}.dbs-activity-copy h2{font-size:28px}.dbs-activity-gallery{grid-template-columns:repeat(2,1fr)}.dbs-activity-gallery img{height:90px}.dbs-activity-main-img{height:220px}}

/* Contact Form 7 enquiry form styling */
.dbs-cf7-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.dbs-cf7-grid label{font-weight:800;color:#061d39}.dbs-cf7-grid input,.dbs-cf7-grid textarea,.dbs-cf7-grid select{margin-top:6px;width:100%;border:1px solid #cbd5df;border-radius:3px;padding:12px;font:inherit}.dbs-cf7-wide{grid-column:1/-1}.dbs-cf7-grid .wpcf7-list-item{margin:0 16px 8px 0}.dbs-cf7-grid input[type=submit]{background:#9bd01e;color:#061d39;border:0;text-transform:uppercase;font-weight:900;cursor:pointer;width:auto;padding:14px 24px}@media(max-width:640px){.dbs-cf7-grid{grid-template-columns:1fr}}
/* =========================================================
   FOOTER LOGOS - larger and tighter
   ========================================================= */

.dbs-footer-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

.dbs-footer-copy {
    margin-right: auto;
}

/* All footer logo blocks */
.dbs-footer-logo {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
}

/* Main three organisation logos */
.dbs-footer-logo img {
    display: block;
    width: auto;
    height: 78px;
    max-width: 145px;
    object-fit: contain;
}

/* Facebook needs to be large enough to read,
   but shouldn't consume a huge footer column */
.dbs-footer-facebook {
    margin-left: 2px;
}

.dbs-footer-facebook img {
    width: 62px;
    height: 62px;
    max-width: none;
    object-fit: contain;
}

/* Keep logo caption close to its logo */
.dbs-footer-logo span {
    display: block;
    margin-top: 5px;
    max-width: 145px;
    font-size: 11px;
    line-height: 1.2;
}

/* Prevent the Facebook link adding spacing */
.dbs-footer-facebook a {
    display: block;
    line-height: 0;
}


/* Tablet */
@media (max-width: 1000px) {

    .dbs-footer-inner {
        gap: 12px;
    }

    .dbs-footer-logo img {
        height: 68px;
        max-width: 125px;
    }

    .dbs-footer-facebook img {
        width: 54px;
        height: 54px;
    }

    .dbs-footer-logo span {
        max-width: 125px;
    }
}


/* Mobile - wrapping is intentional here */
@media (max-width: 760px) {

    .dbs-footer-inner {
        flex-wrap: wrap;
    }

    .dbs-footer-copy {
        flex: 0 0 100%;
        margin-right: 0;
    }

    .dbs-footer-logo img {
        height: 64px;
    }

    .dbs-footer-facebook img {
        width: 52px;
        height: 52px;
    }
}
/* Single full-width home image strip */
.dbs-image-strip.dbs-image-strip-single {
    display: block;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
}

.dbs-image-strip.dbs-image-strip-single a {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.dbs-image-strip.dbs-image-strip-single img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 0;
    object-fit: contain;
}
/* Contact page - space above map */
.dbs-location .dbs-map {
    margin-top: 24px;
}

/* Contact page - address should not be italic */
.dbs-location address {
    font-style: normal;
}
/* Address underneath contact form */
.dbs-contact-address-under-form {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #dbe1e7;
    line-height: 1.6;
}

.dbs-contact-address-under-form strong {
    display: block;
    margin-bottom: 6px;
    color: #005f9a;
    font-size: 16px;
    text-transform: uppercase;
}

.dbs-contact-address-under-form address {
    margin: 0;
    font-style: normal;
    color: var(--ink);
}