*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#f4f7fb;
}

.detail-section{
    padding:60px 20px;
}

.detail-container{
    max-width:1000px;
    margin:auto;
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.btn-kembali{
    display:inline-block;
    margin:30px 0 0 30px;
    background:#1f4f75;
    color:white;
    text-decoration:none;
    padding:12px 22px;
    border-radius:10px;
    font-weight:600;
    transition:0.3s;
}

.btn-kembali:hover{
    background:#163952;
    transform:translateY(-2px);
}

.detail-container img{
    width:100%;
    max-height:500px;
    object-fit:contain;
}

.detail-body{
    padding:40px;
}

.detail-body h1{
    color:#1f4f75;
    font-size:40px;
    margin-bottom:15px;
    line-height:1.4;
}

.tanggal{
    color:#777;
    margin-bottom:30px;
}

.isi{
    font-size:18px;
    line-height:2;
    color:#444;
    text-align:justify;
}

.content2{
    padding:60px 80px;
    background:#1f4f75;
    color:white;

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:50px;
}

.banner{
    width:100%;

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:20px;

    text-align:center;
}

.banner img{
    max-width:700px;
    display:block;
}

.bottom-content{
    width:100%;
    max-width:1100px;

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

    gap:40px;
}

.info-left{
    flex:1;
    text-align:left;
}

.info-right{
    flex:1;
    text-align:left;

    font-size:16px;
    line-height:1.8;
}

.info-left h2{
    color:#E5EB14;
    margin-bottom:15px;
}

.info-left p{
    margin:8px 0;
}

.divider{
    width:2px;
    background:white;
    min-height:150px;
}

@media(max-width:768px){

    .detail-body{
        padding:25px;
    }

    .detail-body h1{
        font-size:28px;
    }

    .isi{
        font-size:16px;
    }

    .content2{
        padding:40px 20px;
    }

    .bottom-content{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:30px;
    }

    .info-left,
    .info-right{
        width:100%;
        text-align:center;
    }

    .divider{
        width:100%;
        height:2px;
        min-height:auto;
    }

    .banner img{
        width:100%;
        height:auto;
    }

}

@media(max-width:480px){

    .detail-body h1{
        font-size:22px;
    }

    .isi{
        font-size:15px;
        line-height:1.8;
    }

}