:root {
    --church-primary: #1e5eff;
    --church-primary-soft: #eaf1ff;
    --church-dark: #0b1f3a;
    --church-dark-2: #123b6d;
    --church-text: #1f2937;
    --church-muted: #6b7280;
    --church-soft: #f6f9ff;
    --church-white: #ffffff;
    --church-border: rgba(15, 23, 42, 0.08);
    --church-gold: #d4a017;
    --church-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    --church-shadow-hover: 0 18px 45px rgba(15, 23, 42, 0.14);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --transition: all 0.3s ease;
}

body {
    background:
        radial-gradient(circle at top left, rgba(30, 94, 255, 0.06), transparent 24%),
        radial-gradient(circle at bottom right, rgba(212, 160, 23, 0.08), transparent 18%),
        linear-gradient(180deg, #f9fbff 0%, #eef4ff 100%);
    color: var(--church-text);
    font-family: "Inter", "Segoe UI", sans-serif;
}

.pgf-page {
    overflow-x: hidden;
}

.pgf-hero-section {
    background: linear-gradient(135deg, var(--church-dark) 0%, var(--church-dark-2) 60%, #1a4f92 100%);
    color: #fff;
    padding: 34px 20px 72px;
    border-bottom-left-radius: 34px;
    border-bottom-right-radius: 34px;
    box-shadow: 0 18px 45px rgba(11, 31, 58, 0.18);
}

.pgf-topbar {
    margin-bottom: 48px;
}

.pgf-logo {
    width: 74px;
    height: 74px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.12);
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.pgf-hero-content {
    max-width: 840px;
    margin: 0 auto;
}

.pgf-hero-section h1 {
    font-weight: 900;
    font-size: 2.7rem;
    line-height: 1.2;
    margin-bottom: 16px;
}

.pgf-hero-section p {
    font-size: 1.08rem;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.92);
}

.btn-pgf-nav {
    font-weight: 700;
    border-radius: 12px;
    min-width: 110px;
}

.pgf-meta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.pgf-meta-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 12px 16px;
    min-width: 180px;
    text-align: center;
}

.pgf-meta-label {
    display: block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 4px;
}

.pgf-meta-value {
    display: block;
    font-size: 0.96rem;
    font-weight: 800;
    color: #fff;
}

.section-space {
    padding: 78px 0;
}

.section-heading {
    margin-bottom: 38px;
}

.mini-label,
.pgf-label {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--church-primary-soft);
    color: var(--church-primary);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-bottom: 14px;
}

.section-title,
.pgf-title {
    font-weight: 900;
    color: var(--church-dark);
    margin-bottom: 12px;
    font-size: 2.05rem;
}

.section-subtitle,
.pgf-text {
    color: var(--church-muted);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.02rem;
}

.pgf-intro-card,
.pgf-card,
.pgf-review-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(248,251,255,0.96) 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
}

.pgf-intro-card {
    padding: 38px 32px;
}

.pgf-text {
    margin: 0;
    max-width: none;
    text-align: justify;
}

.pgf-card {
    padding: 30px 24px;
    height: 100%;
    transition: var(--transition);
}

.pgf-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--church-shadow-hover);
}

.pgf-card-left {
    text-align: left;
}

.pgf-card-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f4f8ff 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    box-shadow:
        inset 0 0 0 1px rgba(30, 94, 255, 0.08),
        0 8px 20px rgba(30, 94, 255, 0.06);
}

.pgf-card h5 {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--church-dark);
    margin-bottom: 12px;
}

.pgf-card p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0;
}

.pgf-list {
    padding-left: 18px;
    margin: 0;
}

.pgf-list li {
    margin-bottom: 10px;
    color: #475569;
    line-height: 1.75;
}

.pgf-review-card {
    padding: 36px 28px;
}

.footer-note {
    background: #0b1f3a;
    color: rgba(255, 255, 255, 0.92);
    padding: 34px 20px 26px;
    margin-top: 42px;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-left {
    max-width: 680px;
}

.footer-brand {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.75;
}

.footer-right {
    text-align: right;
    min-width: 180px;
}

.footer-contact-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 4px;
    font-weight: 700;
}

.footer-contact-value {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
    text-decoration: none;
}

.footer-contact-value:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 20px 0 14px;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.94rem;
}

@media (max-width: 991px) {
    .pgf-hero-section h1 {
        font-size: 2.25rem;
    }

    .section-title,
    .pgf-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .pgf-hero-section {
        padding: 28px 16px 58px;
        border-bottom-left-radius: 26px;
        border-bottom-right-radius: 26px;
    }

    .pgf-topbar {
        margin-bottom: 34px;
    }

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

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

    .section-space {
        padding: 58px 0;
    }

    .pgf-intro-card,
    .pgf-card,
    .pgf-review-card {
        padding: 28px 22px;
    }

    .pgf-meta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .pgf-meta-item {
        min-width: auto;
    }

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

    .footer-right {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .pgf-logo {
        width: 66px;
        height: 66px;
    }

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

    .section-title,
    .pgf-title {
        font-size: 1.6rem;
    }
}