/* ========== GLOBAL ========== */
.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #0B2447;
}

/* ========== GRID LAYANAN ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 40px;
    margin-bottom: 40px;
}

.service-card {
    background: #C7DDF0;
    border: 2px solid #D97706;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: 0.2s;
}

.service-card i {
    font-size: 40px;
    color: #0B2447;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0B2447;
}

.service-card button {
    background: #D97706;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

.service-card button:hover {
    background: #b86305;
}

.service-card:hover {
    transform: translateY(-3px);
}

/* ========== INFO SECTION (Pengumuman & Kegiatan) ========== */
.info-section {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    margin-top: 20px;
    gap: 30px;
}

/* --- PENGUMUMAN --- */
.pengumuman {
    width: 50%;
    background: #C7DDF0;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #D97706;
}

.pengumuman h3 {
    color: #0B2447;
    border-bottom: 2px solid #D97706;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.pengumuman ul {
    padding-left: 20px;
}

.pengumuman li {
    margin-bottom: 10px;
    color: #0B2447;
    font-size: 14px;
}

/* --- KEGIATAN TERBARU --- */
.kegiatan {
    width: 50%;
    background: #C7DDF0;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #D97706;
}

.kegiatan h3 {
    color: #0B2447;
    border-bottom: 2px solid #D97706;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.event {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.event img {
    width: 110px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #D97706;
}

.event p {
    font-size: 14px;
    color: #0B2447;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .info-section {
        flex-direction: column;
    }

    .pengumuman,
    .kegiatan {
        width: 100%;
    }
}
