/* Kembalikan container ke default (boxed) */
.pkp_structure_head .container {
    max-width: 1140px !important; /* atau 1200px sesuai theme */
    margin: 0 auto !important;
    padding: 0 !important;
}

/* Wrapper tetap full dalam container */
.pkp_site_name_wrapper,
.pkp_site_name {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Link logo full */
.pkp_site_name a {
    display: block;
    width: 100%;
}

/* Banner isi container */
.pkp_site_name img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
}

/* ===== VERTICAL MENU CONTAINER ===== */
.vertical-menu {
    width: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

/* ===== MENU HEADER ===== */
.vertical-menu a.active {
    background-color: #8f14b8;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    cursor: default;
}

/* ===== MENU ITEMS ===== */
.vertical-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    font-size: 14px;
}

/* ===== HOVER EFFECT ===== */
.vertical-menu a:hover {
    background-color: #1abc9c;
    color: #ffffff;
    padding-left: 20px;
}

/* ===== LAST ITEM NO BORDER ===== */
.vertical-menu a:last-child {
    border-bottom: none;
}

/* ===== ACTIVE LINK (optional kalau mau highlight halaman aktif) ===== */
.vertical-menu a.current {
    background-color: #16a085;
    color: #ffffff;
    font-weight: bold;
}

/* ===== RESPONSIVE (HP) ===== */
@media (max-width: 768px) {
    .vertical-menu a {
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* ===== FOOTER STYLE ===== */
.custom-footer {
    background-color: #a458bd;
    color: #ffffff;
    margin-top: 40px;
    font-family: Arial, sans-serif;
}

/* CONTAINER */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 20px;
}

/* COLUMN */
.footer-col {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

/* TITLE */
.footer-col h3 {
    margin-bottom: 15px;
    font-size: 16px;
    border-bottom: 2px solid #1abc9c;
    display: inline-block;
    padding-bottom: 5px;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

/* LINKS */
.footer-col a {
    display: block;
    color: #ecf0f1;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-col a:hover {
    color: #1abc9c;
    padding-left: 5px;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    background-color: #8f14b8;
    padding: 10px;
    font-size: 13px;
}