
/* Stylish footer with gradient and shadow */
.pkp_brand_footer,
.pkp_footer,
.pkp_structure_footer_wrapper {
    background: linear-gradient(90deg, #20D7AE, #13b497);
    color: #ffffff !important;
    width: 100% !important;
    text-align: center;
    padding: 25px 10px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

/* Footer links with smooth hover effect */
.pkp_brand_footer a,
.pkp_footer a {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.pkp_brand_footer a:hover,
.pkp_footer a:hover {
    color: #000000 !important;
    text-decoration: underline;
}

/* Responsive footer padding on smaller screens */
@media (max-width: 768px) {
    .pkp_brand_footer,
    .pkp_footer,
    .pkp_structure_footer_wrapper {
        padding: 20px 15px;
        font-size: 14px;
    }
}
