*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f4f6f8;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
    padding:50px 0;
    text-align:center;
}

.title{
    font-size:38px;
    color:#2c4e6e;
    margin-bottom:40px;
    font-weight:700;
    letter-spacing:1px;
}

.box-ruang{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    display:flex;
    justify-content:center;
    align-items:center;
}

.grid-gambar{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;
    justify-items:center;
}

.grid-gambar img{
    width:100%;
    max-width:420px;
    height:250px;
    object-fit:contain;
    background:white;
    border-radius:15px;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    padding:10px;
}

.grid-gambar img:hover{
    transform:scale(1.03);
}

.content2{
    padding:60px 80px;
    background:#1f4f75;
    color:white;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:50px;
    width:100%;
}

.banner{
    width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:20px;
    text-align:center;
}

.banner img{
    max-width:700px;
    width:100%;
    height:auto;
}

.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-left h2{
    color:#E5EB14;
    margin-bottom:15px;
    font-size:28px;
}

.info-left p{
    margin:10px 0;
    line-height:1.7;
}

.divider{
    width:2px;
    background:white;
    min-height:160px;
}

.info-right{
    flex:1;
    text-align:left;
    line-height:1.8;
    font-size:16px;
}

@media(max-width:1024px){

    .container{
        width:92%;
    }

    .title{
        font-size:32px;
    }

    .grid-gambar img{
        height:240px;
    }

    .content2{
        padding:50px 40px;
    }

}

@media(max-width:768px){

    html, body{
        width:100%;
        overflow-x:hidden;
    }

    .container{
        width:95%;
        padding:40px 0;
    }

    .title{
        font-size:26px;
        margin-bottom:30px;
    }

    .box-ruang{
        padding:20px;
        border-radius:15px;
    }

    .grid-gambar{
        grid-template-columns:1fr;
        gap:20px;
    }

    .grid-gambar img{
        max-width:100%;
        height:220px;
    }

    .content2{
        padding:40px 20px;
    }

    .bottom-content{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:30px;
    }

    .info-left,
    .info-right{
        text-align:center;
    }

    .divider{
        width:100%;
        height:2px;
        min-height:auto;
    }

}

@media(max-width:480px){

    .title{
        font-size:22px;
    }

    .grid-gambar img{
        height:180px;
    }

    .info-left h2{
        font-size:22px;
    }

    .info-left p,
    .info-right{
        font-size:14px;
    }

    .content2{
        padding:35px 15px;
    }

}