/* GZU */
body {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    background: #f5f5f5;
    color: #000;
    margin: 0;
    padding-top: 0;
    box-sizing: border-box;
}

.pkp_structure_head {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #006b3f 0%, #009c5b 100%);
    color: #fff;
    border-bottom: 6px solid #f9b233;
    padding: 40px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow: hidden;
    cursor: pointer;
}

.pkp_structure_head .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-effect 0.6s linear forwards;
    pointer-events: none;
}

.pkp_structure_head::before,
.pkp_structure_footer::before,
.pkp_structure_head::after,
.pkp_structure_footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: repeat-x;
    z-index: 1;
}

.pkp_structure_head::before,
.pkp_structure_footer::before {
    background-size: 300px 100px, 400px 150px;
    animation: wave-drift-slow 45s linear infinite;
    opacity: .9;
}

.pkp_structure_head::after,
.pkp_structure_footer::after {
    background-size: 150px 75px, 250px 125px;
    animation: wave-drift-fast 25s linear infinite;
    opacity: .9;
}

.pkp_structure_head::before,
.pkp_structure_head::after {
    background: radial-gradient(circle at 50% 100%, transparent 15%, rgba(255, 255, 255, 0.05) 15.5%, rgba(255, 255, 255, 0.05) 30%, transparent 30.5%),
        radial-gradient(circle at 25% 75%, transparent 10%, rgba(255, 255, 255, 0.03) 10.5%, rgba(255, 255, 255, 0.03) 20%, transparent 20.5%);
}

.pkp_structure_footer {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #006b3f 0%, #009c5b 100%);
    color: #fff;
    border-top: 6px solid #f9b233;
    font-size: 1rem;
    text-align: left;
    padding: 40px 5%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    cursor: pointer;
}

.pkp_structure_footer .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-effect 0.6s linear forwards;
    pointer-events: none;
}

.pkp_structure_footer::before,
.pkp_structure_footer::after {
    background: radial-gradient(circle at 50% 0%, transparent 15%, rgba(255, 255, 255, 0.05) 15.5%, rgba(255, 255, 255, 0.05) 30%, transparent 30.5%),
        radial-gradient(circle at 75% 25%, transparent 10%, rgba(255, 255, 255, 0.03) 10.5%, rgba(255, 255, 255, 0.03) 20%, transparent 20.5%);
}

.header-text,
.footer-columns {
    position: relative;
}

.header-text::before,
.header-text::after,
.footer-columns::before,
.footer-columns::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.07);
    will-change: transform;
    z-index: -1;
}

.header-text::before {
    width: 250px;
    height: 180px;
    border-radius: 45%;
    top: -15vh;
    left: 10vw;
    animation: float-drift-2 35s infinite ease-in-out;
}

.header-text::after {
    width: 180px;
    height: 220px;
    border-radius: 40%;
    top: 2vh;
    right: 15vw;
    animation: float-drift-3 45s infinite ease-in-out;
    animation-delay: 7s;
}

.footer-columns::before {
    width: 220px;
    height: 220px;
    border-radius: 25px;
    bottom: -12vh;
    left: 5vw;
    animation: float-drift-3 40s infinite ease-in-out;
    animation-delay: 3s;
}

.footer-columns::after {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    bottom: 3vh;
    right: 10vw;
    animation: float-drift-2 50s infinite ease-in-out;
    animation-delay: 1s;
}

@keyframes wave-drift-slow {
    from {
        background-position: 0% 50%, 0% 50%;
    }
    to {
        background-position: -350px 50%, -450px 50%;
    }
}

@keyframes wave-drift-fast {
    from {
        background-position: 0% 50%, 0% 50%;
    }
    to {
        background-position: -250px 50%, -350px 50%;
    }
}

/* Updated keyframes for smooth fade-in and fade-out */
@keyframes float-drift-2 {
    0% {
        transform: translateX(100vw) scale(0.9);
        opacity: 0; /* Start invisible */
    }
    15% {
        opacity: 1; /* Fade in */
    }
    85% {
        opacity: 1; /* Stay visible */
    }
    100% {
        transform: translateX(-150vw) scale(0.9);
        opacity: 0; /* Fade out */
    }
}

@keyframes float-drift-3 {
    0% {
        transform: translateX(120vw) scale(1);
        opacity: 0; /* Start invisible */
    }
    15% {
        opacity: 1; /* Fade in */
    }
    85% {
        opacity: 1; /* Stay visible */
    }
    100% {
        transform: translateX(-130vw) scale(1);
        opacity: 0; /* Fade out */
    }
}

@keyframes ripple-effect {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}

.header-image {
    max-width: 70px;
    border-radius: 8px;
    background: #fff;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 107, 63, 0.1);
    position: relative;
    z-index: 2;
}

.header-text h1,
.header-text p {
    position: relative;
    z-index: 3;
}

.header-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.header-text p {
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
    margin: 4px 0 0;
}

.pkp_navigation_primary {
    background: #f9b233;
    border-bottom: 2px solid #006b3f;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}

.pkp_navigation_primary a {
    display: inline-block;
    color: #006b3f;
    text-transform: uppercase;
    font-weight: 700;
    padding: 14px 18px;
    text-decoration: none;
    transition: background .3s ease;
}

.pkp_navigation_primary a:hover {
    background: #30c005;
    color: #006b3f;
}

.pkp_structure_main {
    max-width: 1200px;
    margin: 32px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 107, 63, 0.07);
    padding: 40px 24px;
}

.page_title {
    color: #006b3f;
    border-left: 6px solid #f9b233;
    padding-left: 14px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0;
}

.pkp_structure_footer h4,
.pkp_structure_footer p,
.copyright {
    position: relative;
    z-index: 3;
}

.pkp_structure_footer a {
    color: #f9b233;
    text-decoration: none;
    transition: color .3s ease;
}

.pkp_structure_footer a:hover {
    color: #fff;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer-column {
    flex: 1 1 200px;
    min-width: 150px;
}

.pkp_structure_footer h4 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: #f9b233;
}

.pkp_structure_footer p {
    margin: 0;
    line-height: 1.5;
}

.copyright {
    margin-top: 8px;
    font-size: .93rem;
    color: #f9b233;
}

@keyframes headerTideDown {
    0% {
        top: -80px;
        opacity: 0;
    }
    50% {
        top: 0;
        opacity: 1;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}

@keyframes footerTideUp {
    0% {
        bottom: -80px;
        opacity: 0;
    }
    50% {
        bottom: 0;
        opacity: 1;
    }
    100% {
        bottom: 0;
        opacity: 1;
    }
}

.pkp_structure_head>*,
.pkp_structure_footer>* {
    position: relative;
    z-index: 2;
}

.pkp_brand_footer {
    display: none !important;
}

@media (max-width:900px) {
    .pkp_structure_head {
        flex-direction: column;
        align-items: flex-start;
    }
    .pkp_navigation_primary a {
        font-size: 1rem;
        padding: 8px 12px;
    }
}

@media (max-width:768px) {
    .pkp_structure_footer {
        font-size: .95rem;
        padding: 16px 4%;
    }
    .footer-columns {
        flex-direction: column;
        gap: 16px;
    }
    .footer-column {
        flex: 1 1 100%;
    }
}

@media (max-width:480px) {
    .pkp_structure_footer {
        font-size: .9rem;
        padding: 14px 3%;
    }
    .pkp_structure_footer h4 {
        font-size: 1rem;
    }
}

