:root {
    --primary: #0B7A4B;
    --primary-dark: #064F36;
    --accent: #F5A623;
    --navy: #0B2533;
    --light: #F6FAF8;
    --border: #E8EFEB;
    --muted: #64748B;
    --heading: #0F2B45;
    --shadow: 0 8px 24px rgba(6, 79, 54, 0.08);
    --radius: 14px;
}

body {
    font-family: "Plus Jakarta Sans", "Nunito", sans-serif;
    color: #3A4A5A;
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Plus Jakarta Sans", "Nunito", sans-serif;
    color: var(--heading);
    font-weight: 800;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent);
}

.container {
    max-width: 1180px;
}

/* ============================== HEADER ============================== */
.ppid-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
}

.ppid-header .container {
    min-height: 76px;
}

.ppid-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ppid-logo img {
    height: 46px;
    width: auto;
}

.ppid-logo .sitename {
    display: block;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    color: var(--primary);
    line-height: 1.1;
}

.ppid-logo small {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--muted);
}

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

.ppid-nav ul > li > a {
    display: block;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--heading);
    border-radius: 8px;
    position: relative;
}

.ppid-nav ul > li > a:hover,
.ppid-nav ul > li > a.active {
    color: var(--primary);
    background: rgba(11, 122, 75, 0.07);
}

.ppid-nav-toggle,
.ppid-mobile-close {
    display: none;
    background: transparent;
    border: 0;
    font-size: 1.6rem;
    color: var(--heading);
    line-height: 1;
    cursor: pointer;
}

/* ============================== HERO ============================== */
.ppid-hero {
    position: relative;
    padding: 110px 0;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.ppid-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(4, 59, 41, 0.94), rgba(11, 122, 75, 0.86));
}

.ppid-hero .container {
    position: relative;
    z-index: 1;
}

.ppid-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ppid-hero .hero-badge i {
    color: var(--accent);
}

.ppid-hero h1 {
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.ppid-hero h1 span {
    color: var(--accent);
}

.ppid-hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 600px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.ppid-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 12px 26px;
    border-radius: 999px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.ppid-btn-primary {
    background: var(--accent);
    color: var(--primary-dark);
}

.ppid-btn-primary:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

.ppid-btn-outline {
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    margin-left: 10px;
}

.ppid-btn-outline:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 40px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-stats .stat strong {
    display: block;
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.hero-stats .stat span {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================== SECTIONS ============================== */
.ppid-section {
    padding: 74px 0;
}

.ppid-section.bg-light {
    background: var(--light);
}

.ppid-section-head {
    margin-bottom: 40px;
    text-align: center;
}

.ppid-section-head .section-kicker {
    display: block;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.ppid-section-head h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 900;
    margin: 0;
}

.ppid-section-head p {
    color: var(--muted);
    margin: 12px auto 0;
    max-width: 560px;
}

/* ============================== CARDS ============================== */
.ppid-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    height: 100%;
    transition: all 0.2s ease;
}

.ppid-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.ppid-card .card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.35rem;
    background: rgba(11, 122, 75, 0.1);
    color: var(--primary);
    margin-bottom: 16px;
}

.ppid-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.ppid-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
}

.ppid-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

/* ============================== LIST / DOCUMENTS ============================== */
.ppid-doc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

.ppid-doc-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.ppid-doc-item .doc-icon {
    flex: 0 0 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(11, 122, 75, 0.1);
    color: var(--primary);
}

.ppid-doc-item h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0;
    color: var(--heading);
}

.ppid-doc-item p {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 2px 0 0;
}

.ppid-doc-item .doc-date {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--muted);
    white-space: nowrap;
}

/* ============================== ACCORDION & TABLE ============================== */
.ppid-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.ppid-accordion .accordion-button {
    font-weight: 800;
    font-size: 0.96rem;
    color: var(--heading);
    background: #fff;
    padding: 16px 20px;
    box-shadow: none;
}

.ppid-accordion .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: #fff;
}

.ppid-accordion .accordion-button:focus {
    box-shadow: none;
}

.ppid-table {
    width: 100%;
    border-collapse: collapse;
}

.ppid-table thead th {
    background: var(--primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 12px 16px;
    border: 0;
}

.ppid-table thead th:first-child {
    border-radius: 8px 0 0 0;
}

.ppid-table thead th:last-child {
    border-radius: 0 8px 0 0;
}

.ppid-table tbody td {
    padding: 11px 16px;
    font-size: 0.9rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--border);
}

.ppid-table tbody tr:hover td {
    background: var(--light);
}

.ppid-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.ppid-download-btn:hover {
    background: var(--accent);
    color: #fff;
}

/* ============================== PAGE TITLE ============================== */
.ppid-page-title {
    position: relative;
    padding: 60px 0;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.ppid-page-title::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 59, 41, 0.9), rgba(11, 122, 75, 0.9));
}

.ppid-page-title .container {
    position: relative;
    z-index: 1;
}

.ppid-page-title h1 {
    color: #fff;
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    font-weight: 900;
    margin: 0;
}

.ppid-page-title .breadcrumb {
    justify-content: center;
    margin: 10px 0 0;
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.6);
    --bs-breadcrumb-item-active-color: var(--accent);
}

.ppid-page-title .breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================== CONTENT ============================== */
.ppid-content {
    line-height: 1.85;
    font-size: 1rem;
}

.ppid-content h3 {
    margin-top: 26px;
    margin-bottom: 10px;
    color: var(--primary);
}

.ppid-content blockquote {
    background: var(--light);
    border-left: 4px solid var(--accent);
    border-radius: 0 12px 12px 0;
    padding: 22px 26px;
    margin: 0 0 20px;
}

.ppid-content blockquote h3 {
    margin: 0 0 8px;
}

.ppid-content ul {
    padding-left: 0;
    list-style: none;
}

.ppid-content ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
}

.ppid-content ul li::before {
    content: "\F26E";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
}

/* ============================== INFO BOX ============================== */
.ppid-info-box {
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    background: #fff;
    padding: 18px 22px;
    margin-bottom: 14px;
}

.ppid-info-box h5 {
    font-weight: 800;
    color: var(--primary);
}

.ppid-info-box p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

/* ============================== CTA ============================== */
.ppid-cta {
    background: linear-gradient(120deg, var(--primary), var(--primary-dark));
    border-radius: 18px;
    padding: 48px 40px;
    color: #fff;
}

.ppid-cta h2 {
    color: #fff;
    font-weight: 900;
}

.ppid-cta p {
    color: rgba(255, 255, 255, 0.9);
}

/* ============================== CONTACT ============================== */
.ppid-contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    height: 100%;
    text-align: center;
    transition: all 0.2s ease;
}

.ppid-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.ppid-contact-card .card-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: var(--primary);
    color: #fff;
}

.ppid-contact-card h5 {
    font-weight: 800;
    margin-bottom: 6px;
}

.ppid-contact-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.7;
}

/* ============================== FOOTER ============================== */
.ppid-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

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

.ppid-footer h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.ppid-footer a {
    color: rgba(255, 255, 255, 0.75);
}

.ppid-footer a:hover {
    color: var(--accent);
}

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

.ppid-footer ul li {
    margin-bottom: 9px;
}

.ppid-footer .footer-about img {
    height: 52px;
    margin-bottom: 12px;
}

.ppid-footer .footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 11px;
}

.ppid-footer .footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
}

.ppid-footer .social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.ppid-footer .social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
}

.ppid-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0;
    font-size: 0.83rem;
}

/* ============================== BACK TO TOP ============================== */
.ppid-back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease;
    z-index: 1040;
    box-shadow: 0 8px 20px rgba(11, 122, 75, 0.35);
}

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

.ppid-back-to-top:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

/* ============================== RESPONSIVE ============================== */
@media (max-width: 991.98px) {
    .ppid-logo img {
        height: 40px;
    }

    .ppid-logo .sitename {
        font-size: 1.05rem;
    }

    .ppid-nav-toggle {
        display: block;
    }

    .ppid-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 82vw;
        height: 100vh;
        background: #fff;
        z-index: 1050;
        padding: 64px 20px 20px;
        box-shadow: -10px 0 36px rgba(11, 37, 51, 0.16);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .ppid-nav.open {
        right: 0;
    }

    .ppid-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .ppid-nav ul > li > a {
        width: 100%;
    }

    .ppid-mobile-close {
        display: block;
        position: absolute;
        top: 16px;
        right: 18px;
    }

    .ppid-hero {
        padding: 80px 0;
    }

    .ppid-btn-outline {
        margin-left: 0;
        margin-top: 10px;
    }

    .ppid-section {
        padding: 56px 0;
    }
}
