*{
    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;
}

.prestasi-header{
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.prestasi-header h1{
    font-size: 42px;
    color: #1f4e79;
    margin-bottom: 10px;
}

.prestasi-header p{
    color: #60758a;
}

.prestasi-container{
    width: 90%;
    max-width: 1300px;
    margin: 40px auto;
}

.prestasi-card{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card{
    background: white;
    border-radius: 18px;
    overflow: hidden;

    box-shadow: 0 8px 20px rgba(0,0,0,0.12);

    transition: 0.3s;

    display: flex;
    flex-direction: column;
}

.news-card:hover{
    transform: translateY(-8px);
}

.news-card img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.news-body{
    padding: 22px;

    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-body h3{
    font-size: 22px;
    color: #1f1f1f;

    margin-bottom: 18px;

    line-height: 1.5;
}

.news-body a{
    width: fit-content;

    text-decoration: none;

    background: #1f4e79;
    color: white;

    padding: 12px 18px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: bold;

    margin-bottom: 18px;

    transition: 0.3s;
}

.news-body a:hover{
    background: #163a5c;
}

.news-body p{
    color: #8a8a8a;
    font-size: 13px;

    margin-top: auto;
}

.pagination{
    margin: 50px 0;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

.pagination a{
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    background: white;
    color: #1f4e79;

    border-radius: 10px;

    font-weight: bold;

    box-shadow: 0 4px 12px rgba(0,0,0,0.12);

    transition: 0.3s;
}

.pagination a:hover{
    background: #1f4e79;
    color: white;
}

.pagination .active-page{
    background: #1f4e79;
    color: white;
}

.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){

    .prestasi-card{
        grid-template-columns: repeat(2,1fr);
        gap: 25px;
    }

    .news-card img{
        height: 250px;
    }

}

@media(max-width: 768px){

     .dropdown-btn{
        width: 100%;
        justify-content: center;
    }

    .dropdown-content{
        width: 100%;
        min-width: unset;
    }

    .prestasi-header h1{
        font-size: 32px;
    }

    .prestasi-card{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .prestasi-container{
        width: 92%;
    }

    .news-card img{
        height: 240px;
    }

    .news-body{
        padding: 20px;
    }

    .news-body h3{
        font-size: 20px;
    }

    .bottom-content{
        flex-direction: column;
        text-align: center;
    }

    .info-left,
    .info-right{
        text-align: center;
    }

    .divider{
        width: 100%;
        height: 2px;
        min-height: auto;
    }

    .content2{
        padding:40px 20px;
    }

    .banner img{
        width:100%;
    }

}

@media(max-width: 480px){

    .prestasi-header h1{
        font-size: 26px;
    }

    .prestasi-container{
        width: 94%;
    }

    .news-card img{
        height: 220px;
    }

    .news-body h3{
        font-size: 18px;
    }

    .news-body a{
        width: 100%;
        text-align: center;
    }

    .pagination a{
        width: 40px;
        height: 40px;

        font-size: 14px;
    }

    .prestasi-content h2{
        font-size: 18px;
    }

}