/*
Theme Name: Adult Day Centre
Theme URI: https://www.adultdaycentre.org.uk
Author: Care Wings
Description: Full-width WordPress theme for Adult Day Centre. Modern, warm, and accessible design with blue gradient branding.
Version: 2.19.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adultdaycentre
Tags: full-width, blue, gradient, accessible, care, health
*/

:root {
    --adc-blue: #3b65e9;
    --adc-blue-dark: #3156c7;
    --adc-blue-light: #8fb4f9;
    --adc-blue-lighter: #94d1f5;
    --adc-cream: #fcfcf8;
    --adc-text-dark: #1a1a1a;
    --adc-text-grey: #555555;
    --adc-text-muted: #777777;
    --adc-white: #ffffff;
    --adc-gradient: linear-gradient(135deg, #8fb4f9 0%, #94d1f5 100%);
    --adc-gradient-dark: linear-gradient(135deg, #3b65e9 0%, #5b8def 100%);
    --adc-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --adc-shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.1);
    --adc-radius: 12px;
    --adc-transition: all 0.3s ease;
    --adc-header-height: auto;
    --adc-nav-height: 56px;
}

/* ============ RESET ============ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--adc-cream);
    color: var(--adc-text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: var(--adc-blue);
    text-decoration: none;
    transition: var(--adc-transition);
}

a:hover {
    color: var(--adc-blue-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============ FLORAL GARDEN BACKGROUND OPTION ============ */


/* ============ HEADER: LOGO LEFT + CONTACT RIGHT ============ */
.site-header {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 100;
    padding-bottom: 0;
}

/* Wave SVG beneath the site header on every page */
.site-header-wave {
    width: 100%;
    display: block;
    line-height: 0;
    margin-top: -2px;
}
.site-header-wave svg {
    display: block;
    width: 100%;
    height: 48px;
}

.site-header-top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    gap: 20px;
}

/* Logo on the left */
.site-branding {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.site-logo {
    max-height: 70px;
    width: auto;
}

.site-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--adc-text-dark);
    margin: 0;
    letter-spacing: -0.5px;
}

.site-title a {
    color: var(--adc-text-dark);
    text-decoration: none;
}

.site-title a:hover {
    color: var(--adc-blue-dark);
}

.site-description {
    font-size: 0.85rem;
    color: var(--adc-text-grey);
    margin: 0;
}

/* Contact details on the right */
.header-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
    flex-shrink: 0;
}

.header-contact .contact-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--adc-text-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-contact .contact-item {
    font-size: 0.9rem;
    color: var(--adc-text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-contact .contact-item a {
    color: var(--adc-text-dark);
    font-weight: 500;
}

.header-contact .contact-item a:hover {
    color: var(--adc-blue-dark);
}

.header-contact .contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.6;
}

/* ============ STICKY NAVIGATION (centered, below logo) ============ */
.nav-wrapper {
    width: 100%;
    background: #94d1f5;
    box-shadow: var(--adc-shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow 0.3s ease;
}

.nav-wrapper.scrolled {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: var(--adc-nav-height);
    position: relative;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
    justify-content: center;
}

.main-navigation li a {
    color: var(--adc-text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--adc-transition);
    display: inline-block;
}

.main-navigation li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--adc-blue);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.main-navigation li a:hover::after,
.main-navigation li.current-menu-item > a::after {
    width: 100%;
}

.main-navigation li.current-menu-item > a {
    font-weight: 600;
    color: var(--adc-blue);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    color: var(--adc-text-dark);
    padding: 8px;
}

/* ============ MAIN CONTENT ============ */
.site-main {
    flex: 1 0 auto;
    width: 100%;
}

.site-content {
    width: 100%;
    padding: 20px 40px;
}

.site-content-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.content-area {
    width: 100%;
}

.site-content.full-width {
    max-width: 100%;
}

.site-content.full-width .site-content-inner {
    max-width: 100%;
}

/* ============ HERO SECTION ============ */
.hero-section {
    width: 100%;
    background: var(--adc-gradient);
    padding: 60px 40px 80px;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--adc-text-dark);
    margin-bottom: 16px;
}

.hero-section p {
    font-size: 1.15rem;
    color: var(--adc-text-grey);
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-btn {
    display: inline-block;
    background: var(--adc-blue);
    color: var(--adc-white);
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--adc-transition);
}

.hero-btn:hover {
    background: var(--adc-blue-dark);
    color: var(--adc-white);
    transform: translateY(-2px);
    box-shadow: var(--adc-shadow-lg);
}

/* ============ PAGE HEADER ============ */
.page-header {
    width: 100%;
    background: linear-gradient(135deg, #2d52d4 0%, #3b65e9 40%, #4a8edb 70%, #5bc4d0 100%);
    padding: 60px 40px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative background blobs (mirrors homepage hero) */
.page-header::before,
.page-header::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.page-header::before {
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: rgba(255,255,255,0.05);
}
.page-header::after {
    bottom: 30px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.04);
}

/* Wave SVG at the bottom — injected via a shared div inside each page-header */
.page-header-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none;
}
.page-header-wave svg {
    display: block;
}

.page-header h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    position: relative;
    z-index: 2;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.page-header p {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.88) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* ============ ENTRIES ============ */
.entry {
    margin-bottom: 20px;
}

.entry-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--adc-text-dark);
}

.entry-title a {
    color: var(--adc-text-dark);
}

.entry-title a:hover {
    color: var(--adc-blue);
}

.entry-meta {
    font-size: 0.85rem;
    color: var(--adc-text-muted);
    margin-bottom: 20px;
}

.entry-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--adc-text-dark);
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.entry-content h3 {
    font-size: 1.25rem;
    margin: 25px 0 12px;
}

.entry-content ul, .entry-content ol {
    margin: 0 0 20px 20px;
}

.entry-content img {
    border-radius: var(--adc-radius);
    margin: 20px 0;
}

/* ============ BUTTONS ============ */
.btn,
.button {
    display: inline-block;
    background: var(--adc-blue);
    color: var(--adc-white);
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--adc-transition);
}

.btn:hover,
.button:hover {
    background: var(--adc-blue-dark);
    color: var(--adc-white);
    transform: translateY(-1px);
    box-shadow: var(--adc-shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--adc-blue);
    color: var(--adc-blue);
}

.btn-outline:hover {
    background: var(--adc-blue);
    color: var(--adc-white);
}

/* ============ CARDS ============ */
.card {
    background: var(--adc-white);
    border-radius: var(--adc-radius);
    box-shadow: var(--adc-shadow);
    padding: 30px;
    transition: var(--adc-transition);
}

.card:hover {
    box-shadow: var(--adc-shadow-lg);
    transform: translateY(-3px);
}


/* ============ WIDGETS ============ */
.widget-area {
    margin-top: 40px;
}

.widget {
    background: var(--adc-white);
    border-radius: var(--adc-radius);
    box-shadow: var(--adc-shadow);
    padding: 24px;
    margin-bottom: 24px;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--adc-text-dark);
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.widget ul li:last-child {
    border-bottom: none;
}

/* -------------------------------------------- */
/* ------------------Grid System--------------- */
.gridgrid{ width: 1100px; position: relative; margin: 0 auto; padding: 0px;}
.gridgrid:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }

.gridgrid .f-right{float: right!important;}
.gridgrid .f-left{float: left!important;}

.gridgrid .row{}
.gridgrid .row:before,.row:after { content: '\0020'; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; }
.gridgrid .row:after{clear: both; }
.gridgrid .row{zoom: 1;}

.gridgrid .wrap-col{margin:10px;}

.gridgrid .col-1-2, .gridgrid .col-1-3, .gridgrid .col-2-3, .gridgrid .col-1-4, .gridgrid .col-2-4, .gridgrid .col-3-4, .gridgrid .col-1-5, .gridgrid .col-2-5, .gridgrid .col-3-5, .gridgrid .col-4-5, .gridgrid .col-1-6, .gridgrid .col-2-6, .gridgrid .col-3-6, .gridgrid .col-4-6, .gridgrid .col-5-6{float:left; display: inline-block;}

.gridgrid .col-full{width:100%;}

.gridgrid .col-1-2,.gridgrid .col-1-2-fixed{width:50%;}
.gridgrid .offset-1-2{margin-left: 50%;}

.gridgrid .col-1-3,.gridgrid .col-1-3-fixed{width:33.33%;}
.gridgrid .col-2-3,.gridgrid .col-2-3-fixed{width:66.66%;}
.gridgrid .offset-1-3{margin-left: 33.33%;}
.gridgrid .offset-2-3{margin-left: 66.66%;}

.gridgrid .col-1-4,.gridgrid .col-1-4-fixed{width:25%;}
.gridgrid .col-2-4,.gridgrid .col-2-4-fixed{width:50%;}
.gridgrid .col-3-4,.gridgrid .col-3-4-fixed{width:75%;}
.gridgrid .offset-1-4{margin-left: 25%;}
.gridgrid .offset-2-4{margin-left: 50%;}
.gridgrid .offset-3-4{margin-left: 75%;}

.gridgrid .col-1-5,.gridgrid .col-1-5-fixed{width:20%;}
.gridgrid .col-2-5,.gridgrid .col-2-5-fixed{width:40%;}
.gridgrid .col-3-5,.gridgrid .col-3-5-fixed{width:60%;}
.gridgrid .col-4-5,.gridgrid .col-4-5-fixed{width:80%;}
.gridgrid .offset-1-5{margin-left: 20%;}
.gridgrid .offset-2-5{margin-left: 40%;}
.gridgrid .offset-3-5{margin-left: 60%;}
.gridgrid .offset-4-5{margin-left: 80%;}

.gridgrid .col-1-6,.gridgrid .col-1-6-fixed{width:16.66%;}
.gridgrid .col-2-6,.gridgrid .col-2-6-fixed{width:33.33%;}
.gridgrid .col-3-6,.gridgrid .col-3-6-fixed{width:50%;}
.gridgrid .col-4-6,.gridgrid .col-4-6-fixed{width:66.66%;}
.gridgrid .col-5-6,.gridgrid .col-5-6-fixed{width:83.33%;}
.gridgrid .offset-1-6{margin-left: 16.66%;}
.gridgrid .offset-2-6{margin-left: 33.33%;}
.gridgrid .offset-3-6{margin-left: 50%;}
.gridgrid .offset-4-6{margin-left: 66.66%;}
.gridgrid .offset-5-6{margin-left: 83.33%;}

@media only screen and (min-width: 960px) and (max-width: 1199px) {
    .gridgrid{width:960px;}
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
    .gridgrid{width:768px;}
}

@media only screen and (max-width: 767px) {
    .gridgrid, .gridgrid .col-1-2, .gridgrid .col-1-3, .gridgrid .col-2-3, .gridgrid .col-1-4, .gridgrid .col-2-4, .gridgrid .col-3-4, .gridgrid .col-1-5, .gridgrid .col-2-5, .gridgrid .col-3-5, .gridgrid .col-4-5, .gridgrid .col-1-6, .gridgrid .col-2-6, .gridgrid .col-3-6, .gridgrid .col-4-6, .gridgrid .col-5-6{width:100%;}

    .gridgrid .offset-1-2, .gridgrid .offset-1-3, .gridgrid .offset-2-3, .gridgrid .offset-1-4, .gridgrid .offset-2-4, .gridgrid .offset-3-4, .gridgrid .offset-1-5, .gridgrid .offset-2-5, .gridgrid .offset-3-5, .gridgrid .offset-4-5, .gridgrid .offset-1-6, .gridgrid .offset-2-6, .gridgrid .offset-3-6, .gridgrid .offset-4-6, .gridgrid .offset-5-6{margin-left:0;}
}

/* ============ FOOTER (improved, using gridgrid) ============ */
.site-footer {
    width: 100%;
    background: linear-gradient(135deg, #1a3a9c 0%, #2d52d4 30%, #3b65e9 60%, #4a8edb 100%);
    color: #fff;
    flex-shrink: 0;
    margin-top: auto;
}

.footer-top {
    padding: 50px 0 40px;
}

.footer-logo img {
    opacity: 0.95;
}

.footer-about-text {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-care-wings {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    transition: all 0.3s ease;
}

.footer-care-wings:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.1) 100%);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.footer-care-wings .cw-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1;
}

.footer-care-wings .cw-logo {
    height: 32px;
    width: auto;
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    padding: 5px 0;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links li a::before {
    content: "\003E";
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-links li a:hover::before {
    color: #5bc4d0;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: #fff;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 18px 0;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 2.4;
}

.footer-legal-links {
    text-align: right;
    font-size: 0.82rem;
    line-height: 2.4;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-sep {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
}

/* Safeguarding Notice */
.footer-safeguarding-notice {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-safeguarding-notice p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5;
}

.footer-safeguarding-notice a {
    color: #5bc4d0;
    text-decoration: none;
    font-weight: 500;
}

.footer-safeguarding-notice a:hover {
    text-decoration: underline;
}

.footer-safeguarding-notice strong {
    color: rgba(255, 255, 255, 0.85);
}

/* Responsive: footer bottom bar stacks on mobile */
@media only screen and (max-width: 767px) {
    .footer-top {
        padding: 40px 0 30px;
    }

    .footer-legal-links {
        text-align: left;
    }

    .footer-copyright {
        line-height: 1.6;
        margin-bottom: 6px;
    }

    .footer-bottom-bar {
        padding: 16px 0;
    }

    .footer-safeguarding-notice {
        padding: 10px 20px;
    }

    .footer-safeguarding-notice p {
        font-size: 0.75rem;
    }
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--adc-white);
    border-radius: var(--adc-radius);
    box-shadow: var(--adc-shadow-lg);
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    z-index: 9999;
    font-size: 0.85rem;
    color: var(--adc-text-grey);
}

.cookie-banner .cookie-text {
    flex: 1;
    line-height: 1.5;
}

.cookie-banner .cookie-text a {
    color: var(--adc-blue);
    font-weight: 500;
    text-decoration: underline;
}

.cookie-banner .cookie-text a:hover {
    color: var(--adc-blue-dark);
}
.cookie-banner .cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner .btn-decline {
    background: transparent;
    border: 1px solid #d1d5db;
    color: var(--adc-text-grey);
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
}

.cookie-banner .btn-accept {
    background: #60a5fa;
    color: var(--adc-white);
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============ SCROLL TO TOP ============ */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--adc-blue);
    color: var(--adc-white);
    border: none;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--adc-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 998;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--adc-blue-dark);
    transform: translateY(-2px);
}

.scroll-to-top svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .site-header-top {
        padding: 16px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .header-contact {
        align-items: center;
        text-align: center;
    }

    .header-contact .contact-item {
        justify-content: center;
    }

    .site-title {
        font-size: 1.3rem;
    }

    /* Mobile sticky nav */
    .nav-inner {
        justify-content: space-between;
        padding: 0 20px;
    }

    .main-navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--adc-white);
        flex-direction: column;
        padding: 16px;
        gap: 0;
        box-shadow: var(--adc-shadow-lg);
        max-height: 70vh;
        overflow-y: auto;
    }

    .main-navigation ul.show {
        display: flex;
    }

    .main-navigation li {
        width: 100%;
    }

    .main-navigation li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        text-align: center;
    }

    .main-navigation li:last-child a {
        border-bottom: none;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
    }

    .hero-section {
        padding: 40px 20px 50px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .site-content {
        padding: 20px 20px;
    }

    .page-header {
        padding: 44px 20px 70px;
    }

    .page-header h1 {
        font-size: 1.7rem;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        max-width: 90%;
        padding: 16px 20px;
        bottom: 80px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .site-header-top {
        gap: 12px;
    }

    .header-contact .contact-label {
        display: none;
    }

    .header-contact .contact-item {
        font-size: 0.85rem;
    }
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

#adc-contact-form input:focus,
#adc-contact-form textarea:focus,
#adc-contact-form select:focus {
    outline: none;
    border-color: var(--adc-blue);
    box-shadow: 0 0 0 3px rgba(59, 101, 233, 0.1);
}

#adc-contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(59, 101, 233, 0.3);
}

/* ============ HOMEPAGE STYLES (gridgrid) ============ */
.hp-service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 36px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    box-sizing: border-box;
}
.hp-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(59,101,233,0.12);
}
.hp-service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f7ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.hp-service-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.hp-service-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}
.hp-value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b65e9 0%, #5b8def 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.hp-value-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.hp-value-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.hp-testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
    height: 100%;
    box-sizing: border-box;
}
.hp-testimonial-quote {
    font-size: 3rem;
    color: #3b65e9;
    line-height: 1;
    margin-bottom: 12px;
    font-family: Georgia, serif;
}
.hp-testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}
.hp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.hp-testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3b65e9, #5b8def);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

/* ============ ABOUT PAGE STYLES (gridgrid) ============ */
.ab-stat-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    height: 100%;
    box-sizing: border-box;
}
.ab-stat-num {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b65e9, #5b8def);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.ab-stat-label {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}
.ab-value-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 28px;
    border-top: 4px solid #3b65e9;
    height: 100%;
    box-sizing: border-box;
}
.ab-value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e8f0fe, #f0f7ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.ab-value-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.ab-value-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}
.ab-offer-item {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    height: 100%;
    box-sizing: border-box;
}
.ab-offer-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    background: #e8f0fe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ab-offer-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.ab-offer-text {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ============ RESPONSIVE: gridgrid already handles <767px ============ */
/* On mobile, gridgrid columns become 100% width — cards stack vertically */

/* ============ CONTACT PAGE STYLES (gridgrid) ============ */
.ct-contact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 28px;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ct-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(59,101,233,0.12);
}
.ct-contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #3b65e9 0%, #5b8def 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.ct-contact-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.ct-contact-sub {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
}
.ct-contact-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3b65e9;
    text-decoration: none;
}
.ct-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.ct-form-wrap {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 32px;
}
.ct-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ct-form-row {
    display: flex;
    gap: 16px;
}
.ct-field {
    flex: 1;
}
.ct-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.ct-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}
.ct-input:focus {
    border-color: #3b65e9;
    outline: none;
}
.ct-textarea {
    resize: vertical;
}
.ct-select {
    background: #fff;
}
.ct-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.ct-checkbox {
    margin-top: 4px;
    width: 18px;
    height: 18px;
}
.ct-consent-label {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}
.ct-submit-btn {
    background: linear-gradient(135deg, #3b65e9 0%, #5b8def 100%);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ct-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(59,101,233,0.3);
}
.ct-form-note {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
}
.ct-form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    font-size: 0.9rem;
}
.ct-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 24px;
}
.ct-hours-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 24px;
}
.ct-hours-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ct-hours-table {
    width: 100%;
    font-size: 0.9rem;
    border-collapse: collapse;
}
.ct-hours-table td {
    padding: 8px 0;
}
.ct-hours-table td:first-child {
    color: #555;
}
.ct-hours-table td:last-child {
    text-align: right;
    font-weight: 500;
}
.ct-hours-table tr {
    border-top: 1px solid #f0f0f0;
}
.ct-hours-table tr:first-child {
    border-top: none;
}
.ct-closed {
    color: #999;
}
.ct-hours-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.85rem;
    color: #777;
}
.ct-directions-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    background: #fff;
    border: 2px solid #3b65e9;
    color: #3b65e9;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}
.ct-directions-btn:hover {
    background: #3b65e9;
    color: #fff;
}
.ct-safeguarding-notice {
    background: linear-gradient(135deg, #fff3cd 0%, #fffbe6 100%);
    border-radius: 12px;
    padding: 24px 28px;
    border: 1px solid #ffe69c;
}
.ct-safeguarding-notice p {
    font-size: 0.9rem;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.7;
}
.ct-safeguarding-notice a {
    color: #3b65e9;
    font-weight: 500;
}

/* Responsive: form row stacks on mobile */
@media only screen and (max-width: 767px) {
    .ct-form-row {
        flex-direction: column;
    }
}

/* ============ ACTIVITIES & SERVICES PAGE STYLES (gridgrid) ============ */
.as-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    box-sizing: border-box;
}
.as-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(59,101,233,0.1);
}
.as-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f7ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.as-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.as-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Care services row */
.as-care-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    height: 100%;
    box-sizing: border-box;
    text-align: center;
}
.as-care-icon {
    width: 44px;
    height: 44px;
    background: #e8f0fe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.as-care-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.as-care-text {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Practical services */
.as-practical-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    height: 100%;
    box-sizing: border-box;
}
.as-practical-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f7ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.as-practical-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.as-practical-text {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Typical day timeline */
.as-timeline-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    height: 100%;
    box-sizing: border-box;
}
.as-timeline-time {
    font-size: 0.85rem;
    font-weight: 700;
    color: #3b65e9;
    background: #e8f0fe;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}
.as-timeline-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.as-timeline-text {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.as-timeline-note {
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f7ff 100%);
    border-radius: 12px;
    padding: 24px 28px;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.as-timeline-note p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

/* ============ A DAY AT THE CENTRE PAGE STYLES (gridgrid) ============ */
.day-time-block {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 28px;
    border: 1px solid #f0f0f0;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.day-time-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59,101,233,0.08);
}
.day-time-badge {
    font-size: 0.8rem;
    font-weight: 700;
    color: #3b65e9;
    background: #e8f0fe;
    display: inline-block;
    padding: 5px 14px;
    border-radius: 6px;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}
.day-time-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.day-time-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
    margin: 0 0 10px 0;
}
.day-time-text:last-child {
    margin-bottom: 0;
}

/* Weekly activity cards */
.day-weekday-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.05);
    padding: 28px 24px;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}
.day-weekday-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(59,101,233,0.08);
}
.day-weekday-label {
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.day-weekday-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f7ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.day-weekday-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.day-weekday-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Lunch banner */
.day-meal-banner {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f6ff 100%);
    border: 1px solid #e0ecff;
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
}
.day-meal-banner .day-time-badge {
    margin-bottom: 0;
}

/* Afternoon activity cards */
.day-afternoon-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.day-afternoon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59,101,233,0.07);
}
.day-afternoon-icon {
    width: 40px;
    height: 40px;
    background: #e8f0fe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.day-afternoon-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.day-afternoon-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Behind the scenes cards */
.day-behind-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.05);
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.day-behind-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59,101,233,0.07);
}
.day-behind-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f7ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.day-behind-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.day-behind-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Flexibility callout */
.day-flexibility-callout {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f6ff 100%);
    border: 1px solid #e0ecff;
    border-left: 4px solid #3b65e9;
    border-radius: 16px;
    padding: 36px 32px;
}

/* ============ FAQ PAGE STYLES (gridgrid) ============ */

/* Category header */
.faq-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.faq-category-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f7ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.faq-category-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

/* Accordion container */
.faq-accordion {
    border-radius: 12px;
    overflow: hidden;
}

/* Individual FAQ item */
.faq-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-bottom: none;
    transition: all 0.2s ease;
}
.faq-item:last-child {
    border-bottom: 1px solid #e8e8e8;
}
.faq-item:hover {
    border-color: #c8d8f0;
}
.faq-item[open] {
    border-color: #b0c8f0;
    box-shadow: 0 2px 12px rgba(59,101,233,0.06);
}

/* Question (summary) */
.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    padding: 18px 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: all 0.2s ease;
    user-select: none;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question:hover {
    color: #3b65e9;
}
.faq-question:active {
    color: #3b65e9;
}
.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #3b65e9;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    line-height: 1;
}
.faq-item[open] .faq-question::after {
    content: '\2212';
    transform: rotate(0deg);
}

/* Answer */
.faq-answer {
    padding: 0 24px 20px 24px;
}
.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin: 0 0 10px 0;
}
.faq-answer p:last-child {
    margin-bottom: 0;
}
.faq-answer a {
    color: #3b65e9;
    text-decoration: none;
    font-weight: 500;
}
.faq-answer a:hover {
    text-decoration: underline;
}

/* Bullet list inside answers */
.faq-list {
    margin: 10px 0 10px 0;
    padding-left: 20px;
    list-style: none;
}
.faq-list li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    padding-left: 18px;
    position: relative;
}
.faq-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #3b65e9;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 11px;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .faq-question {
        font-size: 0.95rem;
        padding: 16px 18px;
    }
    .faq-answer {
        padding: 0 18px 16px 18px;
    }
    .faq-answer p,
    .faq-list li {
        font-size: 0.9rem;
    }
    .faq-category-title {
        font-size: 1.2rem;
    }
}

/* ============ FUNDING PAGE STYLES (gridgrid) ============ */

/* Funding option cards */
.fund-option-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.05);
    padding: 28px 24px;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.fund-option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(59,101,233,0.08);
}
.fund-option-primary {
    border: 1px solid #c8d8f0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}
.fund-option-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f7ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.fund-option-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.fund-option-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 14px 0;
}
.fund-option-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b65e9;
    text-decoration: none;
    transition: all 0.2s ease;
}
.fund-option-link:hover {
    color: #2a52d9;
}

/* Process step cards */
.fund-step-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    padding: 24px 18px;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.fund-step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59,101,233,0.07);
}
.fund-step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3b65e9 0%, #5b8def 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 auto 14px;
}
.fund-step-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.fund-step-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.fund-step-text a {
    color: #3b65e9;
    text-decoration: none;
    font-weight: 500;
}

/* Good to know box */
.fund-good-to-know {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f6ff 100%);
    border: 1px solid #e0ecff;
    border-left: 4px solid #3b65e9;
    border-radius: 14px;
    padding: 24px 28px;
}

/* Included / Not included cards */
.fund-included-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(0,0,0,0.05);
    padding: 28px 24px;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #f0f0f0;
}
.fund-included-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.fund-included-list li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}
.fund-included-list li:last-child {
    border-bottom: none;
}
.fund-included-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: #d1fae5;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23059669' stroke-width='3' viewBox='0 0 24 24'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.fund-excluded-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.fund-excluded-list li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}
.fund-excluded-list li:last-child {
    border-bottom: none;
}
.fund-excluded-list li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: #fee2e2;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc2626' stroke-width='3' viewBox='0 0 24 24'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* Responsive */
@media (max-width: 768px) {
    .fund-option-card,
    .fund-included-card {
        padding: 20px 18px;
    }
    .fund-step-card {
        padding: 20px 14px;
    }
    .fund-step-text {
        font-size: 0.8rem;
    }
}

/* ============ PRIVACY PAGE STYLES ============ */

/* Summary box */
.pv-summary-box {
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f7ff 100%);
    border-left: 4px solid #3b65e9;
    border-radius: 14px;
    padding: 28px 32px;
    height: 100%;
    box-sizing: border-box;
}

/* TOC */
.pv-toc {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px 28px;
    height: 100%;
    box-sizing: border-box;
}
.pv-toc-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.pv-toc-list li {
    padding: 5px 0;
    border-bottom: 1px solid #f5f5f5;
}
.pv-toc-list li:last-child {
    border-bottom: none;
}
.pv-toc-list a {
    font-size: 0.88rem;
    color: #555;
    text-decoration: none;
    transition: all 0.2s ease;
}
.pv-toc-list a:hover {
    color: #3b65e9;
    padding-left: 4px;
}

/* Section titles */
.pv-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 36px 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}
.pv-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b65e9 0%, #5b8def 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

/* Sub-titles */
.pv-sub-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 24px 0 10px;
}

/* Lists */
.pv-list {
    margin: 12px 0;
    padding-left: 20px;
}
.pv-list li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 4px;
}

/* Info card */
.pv-info-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #3b65e9;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}
.pv-info-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #3b65e9;
}

/* Tables */
.pv-table-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pv-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.pv-table thead tr {
    background: linear-gradient(135deg, #3b65e9 0%, #5b8def 100%);
}
.pv-table thead th {
    text-align: left;
    padding: 14px 16px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
}
.pv-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}
.pv-table tbody tr:last-child {
    border-bottom: none;
}
.pv-table tbody tr:nth-child(even) {
    background: #f9fafb;
}
.pv-table td {
    padding: 12px 16px;
    color: #444;
    line-height: 1.6;
}
.pv-td-label {
    font-weight: 600;
    color: #333;
}

/* Use cards (Section 5) */
.pv-use-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.pv-use-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59,101,233,0.08);
}
.pv-use-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f7ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.pv-use-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 8px;
}

/* Share cards (Section 9) */
.pv-share-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.pv-share-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.pv-share-icon {
    width: 36px;
    height: 36px;
    background: #e8f0fe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.pv-share-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 6px;
}
.pv-share-text {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Rights cards (Section 13) */
.pv-rights-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.pv-rights-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.pv-rights-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #3b65e9 0%, #5b8def 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
}
.pv-rights-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 4px;
}
.pv-rights-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact cards (Section 16) */
.pv-contact-card {
    background: linear-gradient(135deg, #1a2a5e 0%, #2d52d4 100%);
    border-radius: 14px;
    padding: 28px 24px;
    color: #fff;
    height: 100%;
    box-sizing: border-box;
}
.pv-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.pv-contact-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: #fff;
}
.pv-contact-text {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.85);
}
.pv-contact-text a {
    color: #7db5ff;
    text-decoration: none;
}
.pv-contact-text a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .pv-section-title {
        font-size: 1.3rem;
    }
    .pv-summary-box,
    .pv-toc {
        padding: 20px;
    }
    .pv-table {
        font-size: 0.82rem;
    }
    .pv-table thead th {
        padding: 10px 8px;
    }
    .pv-table td {
        padding: 10px 8px;
    }
}

/* ============ SAFEGUARDING PAGE STYLES ============ */

/* Emergency callout box */
.sg-emergency-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-left: 4px solid #dc2626;
    border-radius: 14px;
    padding: 28px 32px;
    height: 100%;
    box-sizing: border-box;
}

/* Abuse type cards (Section 4) */
.sg-abuse-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.sg-abuse-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.sg-abuse-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sg-abuse-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 4px;
}
.sg-abuse-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============ REFERRALS PAGE STYLES ============ */

/* Source cards (Who Can Refer) */
.ref-source-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.ref-source-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59,101,233,0.08);
}
.ref-source-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f7ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.ref-source-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 8px;
}
.ref-source-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Step cards (How to Make a Referral) */
.ref-step-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 28px 24px 24px;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
}
.ref-step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59,101,233,0.08);
}
.ref-step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3b65e9 0%, #5b8def 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59,101,233,0.3);
}
.ref-step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f7ff 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px auto 16px;
}
.ref-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px;
}
.ref-step-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}
.ref-step-text a {
    color: #3b65e9;
    text-decoration: none;
}
.ref-step-text a:hover {
    text-decoration: underline;
}

/* Info items (What We Need) */
.ref-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.ref-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.ref-info-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #e8f0fe;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ref-info-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 4px;
}
.ref-info-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Timeline (What Happens Next) */
.ref-timeline {
    position: relative;
    padding-left: 40px;
}
.ref-timeline::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: linear-gradient(to bottom, #3b65e9 0%, #3b65e9 80%, #20c5c5 100%);
    border-radius: 2px;
}
.ref-timeline-item {
    position: relative;
    margin-bottom: 28px;
}
.ref-timeline-item:last-child {
    margin-bottom: 0;
}
.ref-timeline-dot {
    position: absolute;
    left: -40px;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1;
}
.ref-timeline-content {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 20px 24px;
    margin-left: 16px;
    transition: all 0.3s ease;
}
.ref-timeline-content:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.ref-timeline-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 6px;
}
.ref-timeline-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Eligibility cards */
.ref-eligibility-card {
    background: #fff;
    border: 2px solid #d7f5dd;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    box-sizing: border-box;
}
.ref-eligibility-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.ref-elig-list {
    margin: 0;
    padding-left: 20px;
}
.ref-elig-list li {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 4px;
}

/* FAQ items */
.ref-faq-item {
    margin-bottom: 10px;
}
.ref-faq-item details {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.ref-faq-item details[open] {
    border-color: #3b65e9;
    box-shadow: 0 4px 16px rgba(59,101,233,0.08);
}
.ref-faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s ease;
}
.ref-faq-item summary::-webkit-details-marker {
    display: none;
}
.ref-faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 400;
    color: #3b65e9;
    transition: transform 0.2s ease;
}
.ref-faq-item details[open] summary::after {
    transform: rotate(45deg);
}
.ref-faq-item summary:hover {
    background: #f9fafb;
}
.ref-faq-item details p {
    padding: 0 24px 18px;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #555;
}
.ref-faq-item details p a {
    color: #3b65e9;
    text-decoration: none;
}
.ref-faq-item details p a:hover {
    text-decoration: underline;
}

/* CTA banner */
.ref-cta {
    background: linear-gradient(135deg, #1a2a5e 0%, #2d52d4 60%, #20c5c5 100%);
    border-radius: 20px;
    padding: 48px 40px;
}
.ref-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.ref-cta-btn-light {
    background: #fff;
    color: #1a2a5e;
}
.ref-cta-btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.ref-cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
}
.ref-cta-btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .ref-timeline {
        padding-left: 0;
    }
    .ref-timeline::before {
        display: none;
    }
    .ref-timeline-dot {
        position: relative;
        left: 0;
        margin-bottom: 12px;
    }
    .ref-timeline-content {
        margin-left: 0;
    }
    .ref-cta {
        padding: 32px 20px;
    }
    .ref-cta-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ============ RECRUITMENT PAGE STYLES ============ */

/* Pathway cards (Three Ways to Join) */
.rec-pathway-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.rec-pathway-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59,101,233,0.08);
}
.rec-pathway-primary {
    border: 2px solid #c7d6fd;
}
.rec-pathway-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.rec-pathway-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 8px;
}
.rec-pathway-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    margin: 0 0 14px;
}
.rec-pathway-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #e8f0fe;
    color: #3b65e9;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Benefit cards (Why Join) */
.rec-benefit-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.rec-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.rec-benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e8f0fe 0%, #f0f7ff 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.rec-benefit-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 6px;
}
.rec-benefit-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Section header */
.rec-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 14px;
}
.rec-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Vacancy cards */
.rec-vacancy-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.rec-vacancy-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    border-color: #c7d6fd;
}
.rec-vacancy-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Volunteer role cards */
.rec-vol-role-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 24px;
    height: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}
.rec-vol-role-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13,148,136,0.08);
}
.rec-vol-role-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.rec-vol-role-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 8px;
}
.rec-vol-role-text {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Volunteer list */
.rec-vol-list {
    margin: 0;
    padding-left: 20px;
}
.rec-vol-list li {
    font-size: 0.88rem;
    line-height: 1.9;
    color: #444;
}

/* Placement cards */
.rec-placement-card {
    background: #fff;
    border: 1px solid #e9e5fd;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    box-sizing: border-box;
}
.rec-placement-list {
    margin: 0;
    padding-left: 20px;
}
.rec-placement-list li {
    font-size: 0.9rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 4px;
}

/* Process cards (How to Apply) */
.rec-process-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 28px 24px 24px;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
}
.rec-process-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59,101,233,0.08);
}
.rec-process-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #3b65e9 0%, #5b8def 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(59,101,233,0.3);
}
.rec-process-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 12px 0 8px;
}
.rec-process-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .rec-section-header h2 {
        font-size: 1.3rem;
    }
    .rec-cta {
        padding: 32px 20px;
    }
}
