
body {
    margin:0;
    font-family:'Inter', sans-serif;
    background:#F4F1F8;
    color:#333;
}

/* WRAPPER */
#wrapper { max-width:1400px; margin:auto; }

/* HEADER */
#header {
    background:url(../image/bannerportal0.jpg) no-repeat center;
    height:160px;
    background-size:cover;
    border-bottom:5px solid #5A1E76;
}

/* TOP BAR */
#bar {
    background:#fff;
    padding:10px 20px;
    text-align:right;
    font-size:14px;
    color:#666;
    border-bottom:1px solid #ddd;
}

/* CONTAINER */
#container {
    display:flex;
    gap:20px;
    padding:20px;
}

/* SIDEBAR */
#side-a { 
    flex:0 0 260px; 
}

/* News & Menu */
.news {
    background:linear-gradient(180deg,#5A1E76,#7A2BA8);
    padding:20px;
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}
.news h3 {
    color:#FFD700;
    font-size:20px;
    text-align:center;
    margin-bottom:15px;
    letter-spacing:1px;
}
#nav { list-style:none; padding:0; }
#nav li { margin:10px 0; position:relative; }
#nav li a {
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px;
    background:rgba(255,255,255,0.1);
    border-radius:8px;
    color:#fff;
    font-weight:500;
    text-decoration:none;
    transition:0.3s;
}
#nav li a:hover { background:#FFD700; color:#5A1E76; transform:translateX(5px);}
#nav li a.active { background:#FFD700; color:#5A1E76; font-weight:600; }
#nav li ul { padding-left:25px; margin-top:5px; }
#nav li ul li a { background:rgba(255,255,255,0.15); }

/* SIDE B (CONTENT) */
#side-b {
    flex:1;
    display:grid;
    grid-template-columns: 1fr 1fr; /* 2 kolum untuk cards */
    gap:25px;
}

/* Header keputusan */
.header-keputusan {
    background: linear-gradient(90deg, #5A1E76, #7A2BA8);
    color: #FFD700;
    padding: 25px;
    border-radius: 14px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,0.25);
    grid-column: 1 / -1; /* span penuh grid 2 kolum */
}

/* Card Style */
.contact-card {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    line-height: 1.6;
    font-size: 15px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

.contact-card .title {
    font-size: 17px;
    font-weight: 700;
    color: #5A1E76;
    margin-bottom: 10px;
}

.contact-card i {
    margin-right: 6px;
    width: 18px;
    text-align: center;
    color: #5A1E76;
}

/* Responsive */
@media(max-width:900px){
    #container { flex-direction:column; }
    #side-a { max-width:100%; margin-bottom:20px; }
    #side-b { grid-template-columns: 1fr; }
}
