  
        :root {
            --secondary: #007749;   /* DPW green */
            --yellow:    #ffd700;  /* accent */
            --light:     #EEF9FF;   /* page bg */
            --gray:      #f8f9fa;   /* card bg */
            --dark-gray: #999999;
            --dark:      #091E3E;   /* headings / text */
        }

        /* ------------------------------------------------------------------
           GLOBAL RESET & TYPOGRAPHY
        ------------------------------------------------------------------ */
        
        h1,h2,h3,h4 { font-weight:700; }
        a { transition:color .25s; }


      .main__title {
    font-size: 2.125rem;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}
.main__title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ffd700;
    border-radius: 2px;
}
        /* ------------------------------------------------------------------
           HERO / PAGE HEADER (replaces .header-image)
        ------------------------------------------------------------------ */
        .page-hero {
            position:relative;
            min-height:45vh;
            background:linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%),
                       url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="%23007449" opacity="0.2" d="M0,300 Q300,150 600,300 T1200,300 V600 H0 Z"/></svg>') center/cover no-repeat;
            display:flex;
            align-items:center;
            justify-content:center;
            text-align:center;
            color:#fff;
            overflow:hidden;
        }
        .page-hero::after{
            content:"";
            position:absolute;
            inset:0;
            background:linear-gradient(180deg, rgba(9,30,62,.6) 0%, rgba(0,119,73,.6) 100%);
        }
        .page-hero .container { position:relative; z-index:1; }
        .page-hero h1{
            font-size:clamp(2rem,5vw,3.2rem);
            margin-bottom:.75rem;
            text-shadow:0 2px 6px rgba(0,0,0,.4);
        }
        .page-hero .breadcrumb{
            background:transparent;
            font-size:.95rem;
        }
        .page-hero .breadcrumb-item a{ color:#ffd700; }
        .page-hero .breadcrumb-item a:hover{ color:#fff; }
        .page-hero .breadcrumb-item.active{ color:#fff; font-weight:600; }

        /* ------------------------------------------------------------------
           MAIN CONTENT WRAPPER
        ------------------------------------------------------------------ */
        .main-content{
            padding:4rem 0;
            background:#fff;
        }
        .section-title{
            position:relative;
            font-size:1.9rem;
            color:var(--dark);
            margin-bottom:2rem;
            padding-left:1.8rem;
        }
        .section-title::before{
            content:"";
            position:absolute;
            left:0; top:50%; transform:translateY(-50%);
            width:8px; height:32px;
            background:var(--yellow);
            border-radius:4px;
        }

        /* ------------------------------------------------------------------
           GOALS – TIMELINE STYLE (unique)
        ------------------------------------------------------------------ */
        .goals-timeline{
            position:relative;
            max-width:900px;
            margin:0 auto;
        }
        .goals-timeline::before{
            content:"";
            position:absolute;
            left:50%; transform:translateX(-50%);
            width:4px;
            height:100%;
            background:linear-gradient(to bottom, var(--secondary), var(--yellow));
            border-radius:2px;
            z-index:0;
        }
        .goal-item{
            position:relative;
            display:flex;
            align-items:center;
            margin-bottom:2.5rem;
            z-index:1;
        }
        .goal-item:nth-child(odd)  { justify-content:flex-start; }
        .goal-item:nth-child(even){ justify-content:flex-end; }

        .goal-card{
            background:var(--gray);
            border-left:5px solid var(--secondary);
            border-radius:0 12px 12px 0;
            padding:1.4rem 1.8rem;
            width:calc(50% - 40px);
            box-shadow:0 6px 16px rgba(0,119,73,.08);
            transition:transform .3s,box-shadow .3s;
        }
        .goal-item:nth-child(even) .goal-card{
            border-left:none;
            border-right:5px solid var(--secondary);
            border-radius:12px 0 0 12px;
        }
        .goal-card:hover{
            transform:translateY(-6px);
            box-shadow:0 12px 24px rgba(0,119,73,.15);
        }
        .goal-card h3{
            color:var(--dark);
            font-weight: bold;
            font-size:1.15rem;
            margin-bottom:.4rem;
        }
        .goal-icon{
            position:absolute;
            left:50%; transform:translateX(-50%);
            width:48px; height:48px;
            background:var(--yellow);
            color:var(--dark);
            border-radius:50%;
            display:flex;
            align-items:center;
            justify-content:center;
            font-weight:900;
            font-size:1.2rem;
            z-index:2;
            box-shadow:0 0 0 6px #fff;
        }

        /* ------------------------------------------------------------------
           STRATEGIC OBJECTIVES – CARD GRID
        ------------------------------------------------------------------ */
        .objectives-grid{
            display:grid;
            grid-template-columns:repeat(auto-fit, minmax(280px,1fr));
            gap:1.8rem;
            margin-top:1.5rem;
        }
        .obj-card{
            background:#fff;
            border:1px solid #e9ecef;
            border-radius:14px;
            overflow:hidden;
            transition:all .3s;
            position:relative;
        }
        .obj-card::before{
            content:"";
            position:absolute;
            top:0; right:0;
            width:100px; height:100px;
            background:radial-gradient(circle at top right, var(--secondary) 0%, transparent 70%);
            opacity:.06;
        }
        .obj-card:hover{
            transform:translateY(-8px);
            box-shadow:0 14px 30px rgba(0,119,73,.14);
            border-color:var(--secondary);
        }
        .obj-icon{
            width:56px; height:56px;
            background:var(--yellow);
            color:var(--dark);
            border-radius:50%;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:1.4rem;
            font-weight:700;
            margin:1.2rem auto 1rem;
        }
        .obj-card h4{
            text-align:center;
            color:var(--dark);
            margin-bottom:.6rem;
        }
        .obj-card p{
            padding:0 1.2rem 1.4rem;
            font-size:.95rem;
        }

        /* ------------------------------------------------------------------
           RESPONSIVE
        ------------------------------------------------------------------ */
        @media (max-width:992px){
            .goal-card{ width:calc(50% - 30px); }
        }
        @media (max-width:768px){
            .goals-timeline::before{ left:30px; }
            .goal-item{ justify-content:flex-start; }
            .goal-card{
                width:calc(100% - 70px);
                margin-left:70px;
                border-left:5px solid var(--secondary);
                border-right:none;
                border-radius:0 12px 12px 0;
            }
            .goal-icon{ left:30px; transform:translateX(-50%); }
        }
        @media (max-width:576px){
            .page-hero h1{ font-size:1.9rem; }
            .section-title{ font-size:1.6rem; padding-left:1.2rem; }
        }
    