*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background: #f3f4f6;
}

.menu-dropdown{
    position: relative;
    display: inline-block;
    margin: 20px;
}

.dropdown-btn{
    background: #1f4e79;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.dropdown-btn:hover{
    background: #163a5c;
}

.dropdown-content{
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 240px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 999;
}

.menu-dropdown:hover .dropdown-content{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.dropdown-content a:hover{
    background: #f1f5f9;
    color: #1f4e79;
}

.header{
    text-align: center;
    margin-top: 20px;
    padding: 0 20px;
}

.header h1{
    font-size: 42px;
    color: #1f4e79;
    margin-bottom: 10px;
}

.header p{
    color: #5c7287;
    font-style: italic;
}

.dokumentasi-section{
    width: 90%;
    max-width: 1250px;
    margin: 50px auto;
}

.dokumentasi-section h2{
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
}

.slider{
    overflow: hidden;
    width: 100%;
    position: relative;
}

.slide-track{
    display: flex;
    gap: 20px;
    width: calc(300px * 12);
    animation: scroll 5s linear infinite;
}

.slide-track img{
    width: 300px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    transition: 0.3s;
}

.slide-track img:hover{
    transform: scale(1.03);
}

@keyframes scroll{

    0%{
        transform: translateX(0);
    }

    100%{
        transform: translateX(calc(-320px * 3));
    }

}

.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.7;
}

.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: 992px){

    .slide-track img{
        width: 260px;
        height: 200px;
    }

}

@media(max-width: 768px){

    .header h1{
        font-size: 30px;
    }

    .dokumentasi-section h2{
        font-size: 20px;
    }

    .slide-track img{
        width: 220px;
        height: 170px;
    }

    .content2{
        padding:40px 20px;
    }

    .bottom-content{
        flex-direction: column;
        text-align: center;
    }

    .info-left,
    .info-right{
        text-align: center;
    }

    .divider{
        width:100%;
        height:2px;
        min-height:auto;
    }

    .banner img{
        width:100%;
    }

}

@media(max-width: 480px){

    .header h1{
        font-size: 24px;
    }

    .slide-track{
        gap: 15px;
    }

    .slide-track img{
        width: 180px;
        height: 140px;
    }

}