:root {
    --ppid-green: #0b7a53;
    --ppid-green-dark: #07563b;
    --ppid-green-soft: #eaf7f1;
    --ppid-gold: #f7b731;
    --ppid-gold-soft: #fff4d8;
    --ppid-ink: #14212b;
    --ppid-muted: #64748b;
    --ppid-border: #e7edf2;
    --ppid-bg: #f6f8fb;
    --ppid-card: #ffffff;
    --ppid-radius: 22px;
    --ppid-radius-sm: 16px;
    --ppid-shadow: 0 18px 45px rgba(15, 23, 42, .08);
    --ppid-shadow-soft: 0 10px 30px rgba(15, 23, 42, .06);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.ppid-page {
    background: var(--ppid-bg);
    color: var(--ppid-ink);
    font-family: "Inter", "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body.ppid-page a {
    color: var(--ppid-green);
    text-decoration: none;
    transition: .2s ease;
}

body.ppid-page a:hover {
    color: var(--ppid-green-dark);
}

img,
iframe {
    max-width: 100%;
}

[id] {
    scroll-margin-top: 105px;
}

.ppid-topbar {
    background: linear-gradient(90deg, var(--ppid-green-dark), var(--ppid-green));
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    padding: 9px 0;
}

.ppid-topbar a {
    color: #fff;
}

.ppid-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(226, 232, 240, .85);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}

.ppid-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.ppid-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ppid-ink) !important;
    min-width: 0;
    flex: 0 0 auto;
}

.ppid-brand-logo-wrap {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(15, 23, 42, .08);
    border: 1px solid var(--ppid-border);
    overflow: hidden;
}

.ppid-brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.ppid-brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ppid-brand-kicker {
    font-size: 11px;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--ppid-green);
}

.ppid-brand-title {
    font-size: 17px;
    font-weight: 950;
    line-height: 1.15;
    color: var(--ppid-green-dark);
    max-width: 360px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ppid-nav-area {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.ppid-header-actions {
    gap: 10px;
    flex: 0 0 auto;
}

.ppid-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 850;
    font-size: 14px;
}

.ppid-action-soft {
    background: var(--ppid-green-soft);
    color: var(--ppid-green-dark) !important;
}

.ppid-action-main {
    background: var(--ppid-green);
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(11, 122, 83, .22);
}

/* Menu generated by Menu::navbar_ppid */
.navmenu {
    padding: 0;
}

.navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 3px;
}

.navmenu li {
    position: relative;
}

.navmenu a,
.navmenu a:focus {
    color: var(--ppid-ink);
    padding: 13px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 800;
    border-radius: 999px;
    white-space: nowrap;
}

.navmenu a:hover,
.navmenu .active,
.navmenu li:hover>a {
    color: var(--ppid-green-dark);
    background: var(--ppid-green-soft);
}

.navmenu a i,
.navmenu a:focus i {
    font-size: 12px;
    margin-left: 6px;
}

.navmenu .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    min-width: 230px;
    background: #fff;
    padding: 10px;
    border-radius: 16px;
    box-shadow: var(--ppid-shadow);
    border: 1px solid var(--ppid-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s ease;
    z-index: 99;
}

.navmenu .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navmenu .dropdown ul li {
    width: 100%;
}

.navmenu .dropdown ul a {
    padding: 10px 12px;
    border-radius: 12px;
    white-space: normal;
    font-size: 13px;
    line-height: 1.35;
}

.mobile-nav-toggle {
    display: none;
    color: var(--ppid-green-dark);
    font-size: 30px;
    line-height: 0;
    cursor: pointer;
    margin-left: 8px;
}

.ppid-main {
    min-height: 70vh;
}

.ppid-hero-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0 62px;
    background:
        radial-gradient(circle at 12% 12%, rgba(247, 183, 49, .32), transparent 32%),
        radial-gradient(circle at 92% 10%, rgba(255, 255, 255, .14), transparent 24%),
        linear-gradient(135deg, #073c2e 0%, #0b7a53 55%, #0f9a69 100%);
    color: #fff;
}

.ppid-hero-section:after {
    content: '';
    position: absolute;
    right: -130px;
    bottom: -150px;
    width: 380px;
    height: 380px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
}

.ppid-hero-content,
.ppid-hero-card {
    position: relative;
    z-index: 2;
}

.ppid-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 8px 13px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .24);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 13px;
    font-weight: 850;
}

.ppid-hero-title {
    font-size: clamp(36px, 5vw, 68px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -.055em;
    margin: 0 0 18px;
    max-width: 900px;
}

.ppid-hero-desc {
    font-size: 18px;
    line-height: 1.72;
    color: rgba(255, 255, 255, .87);
    max-width: 760px;
    margin-bottom: 28px;
}

.ppid-hero-actions,
.ppid-hero-stats {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ppid-hero-stats {
    margin-top: 30px;
}

.ppid-stat-card {
    min-width: 136px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
}

.ppid-stat-card strong {
    display: block;
    color: #fff;
    font-size: 29px;
    line-height: 1;
    font-weight: 950;
}

.ppid-stat-card span {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 700;
}

.ppid-btn-primary,
.ppid-btn-outline,
.ppid-btn-outline-dark {
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 850;
}

.ppid-btn-primary {
    background: var(--ppid-gold);
    color: #173222 !important;
    border: 1px solid var(--ppid-gold);
    box-shadow: 0 12px 25px rgba(247, 183, 49, .25);
}

.ppid-btn-primary:hover {
    background: #ffc857;
    border-color: #ffc857;
}

.ppid-btn-outline {
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .08);
}

.ppid-btn-outline:hover {
    background: rgba(255, 255, 255, .16);
}

.ppid-btn-outline-dark {
    background: #fff;
    color: var(--ppid-green-dark) !important;
    border: 1px solid var(--ppid-border);
}

.ppid-hero-card {
    background: rgba(255, 255, 255, .96);
    color: var(--ppid-ink);
    border-radius: 30px;
    padding: 26px;
    box-shadow: 0 25px 70px rgba(2, 26, 18, .22);
    border: 1px solid rgba(255, 255, 255, .6);
    max-height: 620px;
    overflow: auto;
}

.ppid-hero-card-top,
.ppid-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.ppid-hero-card h2,
.ppid-panel-header h2,
.ppid-section-heading h2,
.ppid-contact-card h2,
.ppid-empty-card h2 {
    font-weight: 950;
    letter-spacing: -.035em;
    color: var(--ppid-ink);
    margin: 0;
}

.ppid-hero-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ppid-green-dark);
    background: var(--ppid-green-soft);
    flex: 0 0 auto;
    font-size: 22px;
}

.ppid-hero-person {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 22px;
}

.ppid-mini-label,
.ppid-section-eyebrow {
    display: inline-block;
    color: var(--ppid-green);
    font-size: 12px;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-weight: 950;
    margin-bottom: 8px;
}

.ppid-quick-section,
.ppid-content-section,
.ppid-contact-section {
    padding: 64px 0;
}

.ppid-section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.ppid-section-heading.text-center {
    margin-left: auto;
    margin-right: auto;
}

.ppid-section-heading p {
    color: var(--ppid-muted);
    margin: 10px 0 0;
    line-height: 1.7;
}

.ppid-quick-card {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--ppid-border);
    box-shadow: var(--ppid-shadow-soft);
    color: var(--ppid-ink) !important;
}

.ppid-quick-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ppid-shadow);
    border-color: rgba(11, 122, 83, .25);
}

.ppid-quick-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ppid-green-soft);
    color: var(--ppid-green);
    font-size: 21px;
    flex: 0 0 auto;
}

.ppid-quick-title {
    font-weight: 900;
    line-height: 1.25;
    flex: 1 1 auto;
}

.ppid-quick-arrow {
    color: var(--ppid-green);
    flex: 0 0 auto;
}

.ppid-content-section {
    background: linear-gradient(180deg, #fff 0%, var(--ppid-bg) 100%);
}

.ppid-section-panel {
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--ppid-border);
    box-shadow: var(--ppid-shadow-soft);
    margin-bottom: 28px;
}

.ppid-panel-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    padding: 9px 13px;
    background: var(--ppid-green-soft);
    color: var(--ppid-green-dark) !important;
    font-weight: 850;
    white-space: nowrap;
}

.ppid-info-card {
    height: 100%;
    border: 1px solid var(--ppid-border);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
}

.ppid-info-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #e5e7eb;
}

.ppid-info-body {
    padding: 20px;
}

.ppid-info-body h3,
.ppid-content-preview h3 {
    font-weight: 920;
    line-height: 1.22;
    letter-spacing: -.02em;
    margin-bottom: 8px;
}

.ppid-info-subtitle {
    color: var(--ppid-muted);
    font-weight: 750;
    margin-bottom: 14px;
}

.ppid-rich-content {
    color: #263238;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.ppid-rich-content p:last-child,
.ppid-rich-content ul:last-child,
.ppid-rich-content ol:last-child {
    margin-bottom: 0;
}

.ppid-rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    margin: 10px 0;
}

.ppid-rich-content iframe,
.ppid-rich-content video,
.ppid-rich-content embed,
.ppid-rich-content object {
    max-width: 100%;
    border-radius: 18px;
}

.ppid-rich-content table {
    width: 100% !important;
    max-width: 100%;
    display: block;
    overflow-x: auto;
    border-collapse: collapse;
}

.ppid-rich-content table th,
.ppid-rich-content table td {
    padding: 10px 12px;
    border: 1px solid var(--ppid-border);
    vertical-align: top;
}

.ppid-rich-content .table {
    display: table;
}

.ppid-empty-card {
    padding: 60px 24px;
    border-radius: 28px;
    background: #fff;
    border: 1px dashed #cbd5e1;
}

.ppid-empty-card i {
    font-size: 48px;
    color: var(--ppid-green);
}

.ppid-contact-section {
    background:
        radial-gradient(circle at 15% 10%, rgba(247, 183, 49, .18), transparent 28%),
        linear-gradient(135deg, #f8fafc, #eef8f2);
}

.ppid-contact-card,
.ppid-map-card {
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--ppid-border);
    box-shadow: var(--ppid-shadow-soft);
    overflow: hidden;
}

.ppid-contact-card {
    padding: 28px;
}

.ppid-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
}

.ppid-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: var(--ppid-bg);
    color: var(--ppid-ink);
    font-weight: 700;
}

.ppid-contact-item i {
    color: var(--ppid-green);
    font-size: 18px;
    line-height: 1.5;
}

.ppid-map-card {
    min-height: 420px;
}

.ppid-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.ppid-map-empty {
    height: 100%;
    min-height: 420px;
    display: grid;
    place-items: center;
    text-align: center;
    color: var(--ppid-muted);
}

.ppid-map-empty i {
    font-size: 44px;
    color: var(--ppid-green);
}

.ppid-footer {
    background: #0f2f24;
    color: rgba(255, 255, 255, .78);
    padding: 54px 0 0;
}

.ppid-footer a {
    color: #fff !important;
}

.ppid-footer h5 {
    color: #fff;
    font-weight: 900;
    margin-bottom: 14px;
}

.ppid-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff !important;
    font-weight: 950;
    font-size: 20px;
    line-height: 1.2;
}

.ppid-footer-brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 14px;
    background: #fff;
    padding: 5px;
}

.ppid-footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ppid-social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ppid-social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
}

.ppid-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 36px;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
}

.ppid-scroll-top {
    position: fixed;
    right: 18px;
    bottom: -48px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ppid-green);
    color: #fff !important;
    font-size: 24px;
    z-index: 1025;
    box-shadow: 0 12px 28px rgba(11, 122, 83, .28);
    transition: .25s ease;
}

.ppid-scroll-top.active {
    bottom: 18px;
}

@media (max-width: 1199.98px) {
    .ppid-header-inner {
        min-height: 70px;
    }

    .ppid-brand-title {
        max-width: 260px;
        font-size: 15px;
    }

    .ppid-nav-area {
        justify-content: flex-end;
        flex: 0 0 auto;
    }

    .mobile-nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: var(--ppid-green-soft);
    }

    .navmenu>ul {
        display: none;
    }

    body.mobile-nav-active {
        overflow: hidden;
    }

    body.mobile-nav-active .navmenu {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, .55);
        z-index: 9997;
        padding: 86px 16px 20px;
        backdrop-filter: blur(5px);
    }

    body.mobile-nav-active .mobile-nav-toggle {
        position: fixed;
        right: 18px;
        top: 18px;
        z-index: 9999;
        background: #fff;
        color: var(--ppid-green-dark);
    }

    body.mobile-nav-active .navmenu>ul {
        display: block;
        position: relative;
        background: #fff;
        border-radius: 24px;
        padding: 16px;
        width: min(420px, 100%);
        margin-left: auto;
        max-height: calc(100vh - 116px);
        overflow-y: auto;
        box-shadow: var(--ppid-shadow);
    }

    .navmenu ul {
        align-items: stretch;
    }

    body.mobile-nav-active .navmenu li {
        width: 100%;
    }

    body.mobile-nav-active .navmenu a,
    body.mobile-nav-active .navmenu a:focus {
        width: 100%;
        padding: 12px 14px;
        border-radius: 14px;
        white-space: normal;
    }

    .navmenu .dropdown ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border: 0;
        background: var(--ppid-bg);
        margin: 4px 0 8px;
        padding: 8px;
        min-width: unset;
    }

    .navmenu .dropdown:hover>ul {
        display: none;
    }

    .navmenu .dropdown>.dropdown-active {
        display: block !important;
    }
}

@media (max-width: 991.98px) {
    [id] {
        scroll-margin-top: 84px;
    }

    .ppid-hero-section {
        padding: 54px 0 44px;
    }

    .ppid-hero-card {
        max-height: none;
    }

    .ppid-quick-section,
    .ppid-content-section,
    .ppid-contact-section {
        padding: 44px 0;
    }

    .ppid-section-panel,
    .ppid-contact-card {
        padding: 22px;
        border-radius: 24px;
    }

    .ppid-map-card,
    .ppid-map-card iframe,
    .ppid-map-empty {
        min-height: 330px;
    }
}

@media (max-width: 767.98px) {
    .container,
    .container-fluid,
    .container-xl {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ppid-header-inner {
        gap: 12px;
    }

    .ppid-brand-logo-wrap {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .ppid-brand-logo {
        width: 38px;
        height: 38px;
    }

    .ppid-brand-title {
        max-width: 190px;
        font-size: 14px;
    }

    .ppid-hero-title {
        font-size: 36px;
        letter-spacing: -.04em;
    }

    .ppid-hero-desc {
        font-size: 15px;
        line-height: 1.65;
    }

    .ppid-hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .ppid-stat-card {
        flex: 1 1 calc(50% - 8px);
        min-width: 0;
    }

    .ppid-hero-card {
        border-radius: 24px;
        padding: 20px;
    }

    .ppid-hero-card-top,
    .ppid-panel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .ppid-section-heading h2,
    .ppid-panel-header h2,
    .ppid-contact-card h2 {
        font-size: 25px;
    }

    .ppid-quick-card {
        padding: 15px;
        border-radius: 18px;
        flex-direction: column;
        align-items: flex-start;
    }

    .ppid-quick-icon {
        width: 42px;
        height: 42px;
        font-size: 19px;
    }

    .ppid-quick-title {
        font-size: 14px;
    }

    .ppid-section-panel,
    .ppid-contact-card {
        padding: 18px;
    }

    .ppid-info-body {
        padding: 16px;
    }

    .ppid-info-img {
        height: 190px;
    }

    .ppid-rich-content {
        font-size: 15px;
        line-height: 1.72;
    }

    .ppid-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .ppid-brand-title {
        max-width: 150px;
    }

    .ppid-hero-section {
        padding-top: 42px;
    }

    .ppid-hero-title {
        font-size: 31px;
    }

    .ppid-stat-card {
        flex-basis: 100%;
    }
}

@media print {
    .ppid-topbar,
    .ppid-header,
    .ppid-footer,
    .ppid-scroll-top,
    .ppid-hero-actions,
    .ppid-header-actions {
        display: none !important;
    }

    body.ppid-page {
        background: #fff;
    }

    .ppid-hero-section,
    .ppid-contact-section,
    .ppid-content-section {
        background: #fff !important;
        color: #000;
        padding: 20px 0;
    }

    .ppid-section-panel,
    .ppid-info-card,
    .ppid-contact-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}
