/* ===== FOOTER BASE STYLE (Dark Teal Example) ===== */
.pkp_brand_footer,
.pkp_footer,
.pkp_structure_footer_wrapper {
    background-color: #0D2E4A !important;
    color: #e6f4ff !important;
    width: 100% !important;
    text-align: center;
    padding: 25px 0;
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    border-top: 4px solid #194d75;
    box-shadow: 0 -2px 10px rgba(13, 46, 74, 0.5);
}

/* Footer Links */
.pkp_brand_footer a,
.pkp_footer a {
    color: #cceaff !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.pkp_brand_footer a:hover,
.pkp_footer a:hover {
    color: #ffffff !important;
    border-bottom: 2px solid #ffffff;
}

/* ===== SIDEBAR STYLING ===== */
.sidebar,
.pkp_sidebar {
    background: #f9fbff;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', sans-serif;
}

/* Sidebar Headings */
.sidebar h3,
.pkp_sidebar h3 {
    font-size: 18px;
    font-weight: bold;
    color: #0D2E4A;
    margin-bottom: 10px;
    border-left: 4px solid #0D2E4A;
    padding-left: 8px;
}

/* Sidebar Links */
.sidebar a,
.pkp_sidebar a {
    display: block;
    padding: 8px 12px;
    margin: 5px 0;
    border-radius: 6px;
    color: #0D2E4A;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #ffffff;
}

.sidebar a:hover,
.pkp_sidebar a:hover {
    background: #0D2E4A;
    color: #ffffff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* Sidebar Lists */
.sidebar ul,
.pkp_sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar ul li,
.pkp_sidebar ul li {
    margin-bottom: 8px;
}