.keunggulan-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.keunggulan-slider {
    overflow: hidden;
    padding: 20px 0;
}

.keunggulan-container {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease;
}

/* Menggabungkan semua properti keunggulan-item menjadi satu */
.keunggulan-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 14px);
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height: 650px;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
/* ... existing code ... */

    /* Navigation */
    nav ul li a {
        padding: 5px 2px;
        display: flex;
        align-items: center;
        height: 100%;
        position: relative;  /* Menambahkan ini */
    }

    nav ul li a.active {
        color: #FF6B00 !important;
        font-weight: bold;
    }

    nav ul li a.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #FF6B00;
        transition: width 0.3s ease;  /* Menambahkan transisi */
    }
/* Menggabungkan semua properti item-content menjadi satu */
.item-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}

.item-content img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin: 15px 0;
}

.item-content p {
    height: 250px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: justify;
    margin-bottom: 15px;
    overflow-y: auto;
}

/* Menghapus duplikasi nav-btn dan menyatukan propertinya */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #ff6b00;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin: 0 15px;
}

.item-content h4 {
    font-size: 18px;
    color: #0066cc;
    text-align: center;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.read-more {
    margin-top: auto;
    align-self: center;
    padding: 8px 20px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6b00;
    color: white;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    margin: 0 15px;  /* Menambah margin agar tidak terlalu pojok */
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.item-content p {
    font-size: 14px;  /* Mengubah ukuran font deskripsi */
    line-height: 1.6;
    color: #666;
    margin: 15px 0;
    text-align: justify;
}

.keunggulan-item {
    padding: 0 15px;  /* Menambah padding untuk spacing antar item */
}

.prev-btn:hover,
.next-btn:hover {
    background: #ff8533;
}

.info-box, .hours-box {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.info-box h3, .hours-box h3 {
    color: #3498DB;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.info-box p, .hours-box p {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.5;
}

.map-box {
    flex: 2;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
    border-radius: 8px;
}

.social-links {
    display: flex;
    gap: 15px;  /* Jarak antar icon */
    margin-top: 15px;
    align-items: center;
}

.social-links a {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #FF6B00;
    transform: scale(1.1);
}

.contact-form {
    text-align: center;
    margin-top: 30px;
}

.ask-button {
    background: #25D366; /* Warna WhatsApp */
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.ask-button:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.form-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

.contact-main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px; /* Tambah padding bottom yang lebih kecil */
}

.contact-container {
    display: flex;
    gap: 2rem;
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
    height: auto;
}

.contact-left {
    flex: 1;
    padding: 2rem;
    margin-left: 2rem;  /* Tambah margin kiri */
    background: white;
}

.info-section, .operation-hours {
    background: white;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.map-container {
    flex: 2;
    margin-right: 2rem;
    height: 300px; /* Set tinggi tetap */
}

.map-container iframe {
    width: 100%;
    height: 528px; /* Sesuaikan dengan container */
    border: none;
    display: block;
}

.contact-form {
    text-align: center;
    margin: 10px 0; /* Kurangi margin */
}

.form-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px; /* Kurangi margin */
    margin-bottom: 10px; /* Tambah margin bottom */
}

footer {
    margin-top: 0;
    padding-top: 20px; /* Tambah padding top di footer */
}

.info-section a:hover {
    color: #FF6B00;
}

.page-header {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    text-align: center;  /* Ubah ke center */
    margin-bottom: 30px;
}

.page-header .section-heading h3 {
    color: #FF6B00;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.page-header .section-heading h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background-color: #FF6B00;
    border-radius: 3px;
}

.page-header .section-heading h3:hover::after {
    width: 100%;
}

/* Gunakan style baru ini */
.Hubungi-Kami {
    color: #3498DB;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.Hubungi-Kami::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background-color: #FF6B00;
    border-radius: 3px;
}
.contact-section p a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 5px;  /* Mengurangi gap antara icon dan text */
}

.contact-section p i {
    width: 16px;  /* Mengurangi width icon */
    margin-right: 8px;  /* Mengurangi margin right */
    color: #ffffff;
}

.contact-section i {
    margin-top: 2px;  /* Mengurangi margin top */
    min-width: 16px;  /* Mengurangi min-width */
    color: #ffffff;
}

.contact-info a:hover {
    transform: translateX(10px);  /* Mengubah dari -10px ke 10px */
    color: #FF6B00;
}


.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading h3 {
    font-size: 32px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-heading h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: #ff6b00;
}

.sejarah-section .section-heading h3 {
    color: white;
}

.profil-sekolah-section .section-heading h3 {
    color: #3498DB;
    font-size: 32px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.profil-sekolah-section .section-heading h3::after,
/* Style untuk section tenaga pendidik */
.tenaga-pendidik-section {
    margin-top: 50px;
    text-align: center;
}

.tenaga-pendidik-section .section-heading h3 {
    color: #3498DB;
    font-size: 32px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.tenaga-pendidik-section .section-heading h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: #ff6b00;
}

.tenaga-pendidik-section {
    margin-top: 50px;  /* Memberikan jarak dari section sebelumnya */
}

.sejarah-section {
    background: #3498DB;
    padding: 50px 0;
}

.social-icons a {
    color: white;
    font-size: 2.2rem;  /* Mengembalikan ke ukuran awal */
    margin: 0 2px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff6b00;
    transform: scale(1.1);
}

.kepsek-profile {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    gap: 30px;
    align-items: center;
}

.kepsek-photo {
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.kepsek-title {
    color: #3498DB;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: -5px;
}

.kepsek-name {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.kepsek-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.kepsek-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.wakasek-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.wakasek-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.wakasek-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.wakasek-card .guru-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    overflow: hidden;
}

.wakasek-card .guru-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wakasek-info {
    margin-top: 15px;
}

.wakasek-info .jabatan {
    color: #3498DB;
    font-weight: bold;
    margin-bottom: 5px;
}

.wakasek-info h4 {
    color: #333;
    margin: 5px 0;
}

.wakasek-info p:last-child {
    color: #666;
    font-size: 14px;
}

.guru-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 30px auto;
}

.guru-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.guru-card .guru-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    overflow: hidden;
}

.guru-card .guru-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.guru-nama {
    color: #333;
    font-size: 14px; /* Mengubah dari 16px menjadi 14px */
    font-weight: bold;
    margin-bottom: 5px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px; /* Menambah padding horizontal */
}

.guru-mapel {
    color: #3498DB;
    font-size: 12px; /* Mengubah dari 14px menjadi 12px */
    margin-bottom: 5px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guru-pendidikan {
    color: #666;
    font-size: 11px; /* Mengubah dari 12px menjadi 11px */
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guru-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 30px auto;
}

.fasilitas-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: center;
}

.fasilitas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.fasilitas-photo {
    width: 200px;
    height: 150px;
    overflow: hidden;
}

.fasilitas-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.fasilitas-info {
    flex: 1;
}

.fasilitas-info h4 {
    color: #3498DB;
    margin-bottom: 10px;
    font-size: 18px;
}

.fasilitas-info p {
    color: #666;
    line-height: 1.6;
}

.keunggulan-item .item-content img {
    width: 100%;
    height: 250px;  /* Set tinggi yang sama untuk semua gambar */
    object-fit: cover;  /* Pastikan gambar menutupi area dengan baik */
    margin: 15px 0;  /* Beri jarak yang sama atas dan bawah */
    border-radius: 8px;  /* Optional: memberi sudut melengkung */
}

.keunggulan-item {
    height: 100%;  /* Memastikan semua item memiliki tinggi yang sama */
    display: flex;
    flex-direction: column;
}

.item-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;  /* Memberikan jarak yang konsisten antara elemen */
}
@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-beranda {
    position: relative;
    background: #3498DB;
    padding: 30px 20px; /* Mengurangi padding-top dari 50px menjadi 30px */
    text-align: center;
    color: white;
}

.banner-beranda h1 {
    animation: floatIn 2s ease forwards;
    opacity: 0;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.banner-beranda p {
    animation: floatIn 2s ease forwards; /* Memperlambat dari 1s menjadi 2s */
    animation-delay: 1s; /* Memperlambat delay dari 0.5s menjadi 1s */
    opacity: 0;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}
.statistik-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    width: 100%;
    margin: 0 auto;
}

.statistik-item {
    width: 190px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    margin: 0 2px;
}

.statistik-icon {
    color: #2196F3;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.statistik-number {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin: 8px 0;
}

.statistik-label {
    font-size: 1rem;
    color: #666;
}

.statistik-section {
    padding: 20px 0;
}

.statistik-heading {
    text-align: center;
    margin-bottom: 20px;
}

.contact-main .Hubungi-Kami {
    color: #FF6B00;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
    width: 100%;
}

.contact-main .Hubungi-Kami::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background-color: #FF6B00;
    border-radius: 3px;
}
.contact-section p a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 5px;  /* Mengurangi gap antara icon dan text */
}

.contact-section p i {
    width: 16px;  /* Mengurangi width icon */
    margin-right: 8px;  /* Mengurangi margin right */
    color: #ffffff;
}

.contact-section i {
    margin-top: 2px;  /* Mengurangi margin top */
    min-width: 16px;  /* Mengurangi min-width */
    color: #ffffff;
}
.contact-info p {
    margin: 0;
}

.contact-info a:hover {
    transform: translateX(10px);  /* Mengubah dari -10px ke 10px */
    color: #FF6B00;
}

.contact-info i {
    color: #FF6B00;
    font-size: 16px;
}

.section-heading {
    text-align: center;
    margin-bottom: 30px;
}

.section-heading h3 {
    font-size: 32px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-heading h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: #ff6b00;
}

.sejarah-section .section-heading h3 {
    color: white;
}

.profil-sekolah-section .section-heading h3 {
    color: #3498DB;
    font-size: 32px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.profil-sekolah-section .section-heading h3::after,
/* Style untuk section tenaga pendidik */
.tenaga-pendidik-section {
    margin-top: 50px;
    text-align: center;
}

.tenaga-pendidik-section .section-heading h3 {
    color: #3498DB;
    font-size: 32px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.tenaga-pendidik-section .section-heading h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: #ff6b00;
}

.tenaga-pendidik-section {
    margin-top: 50px;  /* Memberikan jarak dari section sebelumnya */
}

.sejarah-section {
    background: #3498DB;
    padding: 50px 0;
}

.social-icons a {
    color: white;
    font-size: 2.2rem;  /* Mengembalikan ke ukuran awal */
    margin: 0 2px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff6b00;
    transform: scale(1.1);
}

.kepsek-profile {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    gap: 30px;
    align-items: center;
}

.kepsek-photo {
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.kepsek-title {
    color: #3498DB;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: -5px;
}

.kepsek-name {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
}

.kepsek-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.kepsek-profile:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.wakasek-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.wakasek-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.wakasek-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.wakasek-card .guru-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    overflow: hidden;
}

.wakasek-card .guru-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wakasek-info {
    margin-top: 15px;
}

.wakasek-info .jabatan {
    color: #3498DB;
    font-weight: bold;
    margin-bottom: 5px;
}

.wakasek-info h4 {
    color: #333;
    margin: 5px 0;
}

.wakasek-info p:last-child {
    color: #666;
    font-size: 14px;
}

.guru-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 30px auto;
}

.guru-card {
    background: white;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.guru-card .guru-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    overflow: hidden;
}

.guru-card .guru-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.guru-nama {
    color: #333;
    font-size: 14px; /* Mengubah dari 16px menjadi 14px */
    font-weight: bold;
    margin-bottom: 5px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px; /* Menambah padding horizontal */
}

.guru-mapel {
    color: #3498DB;
    font-size: 12px; /* Mengubah dari 14px menjadi 12px */
    margin-bottom: 5px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guru-pendidikan {
    color: #666;
    font-size: 11px; /* Mengubah dari 12px menjadi 11px */
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guru-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.fasilitas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 30px auto;
}

.fasilitas-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: center;
}

.fasilitas-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.fasilitas-photo {
    width: 200px;
    height: 150px;
    overflow: hidden;
}

.fasilitas-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.fasilitas-info {
    flex: 1;
}

.fasilitas-info h4 {
    color: #3498DB;
    margin-bottom: 10px;
    font-size: 18px;
}

.fasilitas-info p {
    color: #666;
    line-height: 1.6;
}

.keunggulan-item .item-content img {
    width: 100%;
    height: 250px;  /* Set tinggi yang sama untuk semua gambar */
    object-fit: cover;  /* Pastikan gambar menutupi area dengan baik */
    margin: 15px 0;  /* Beri jarak yang sama atas dan bawah */
    border-radius: 8px;  /* Optional: memberi sudut melengkung */
}

.keunggulan-item {
    height: 100%;  /* Memastikan semua item memiliki tinggi yang sama */
    display: flex;
    flex-direction: column;
}

.item-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 15px;  /* Memberikan jarak yang konsisten antara elemen */
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-beranda {
    position: relative;
    background: #3498DB;
    padding: 30px 20px; /* Mengurangi padding-top dari 50px menjadi 30px */
    text-align: center;
    color: white;
}

.banner-beranda h1 {
    animation: floatIn 2s ease forwards;
    opacity: 0;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.banner-beranda p {
    animation: floatIn 2s ease forwards; /* Memperlambat dari 1s menjadi 2s */
    animation-delay: 1s; /* Memperlambat delay dari 0.5s menjadi 1s */
    opacity: 0;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}
.statistik-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    width: 100%;
    margin: 0 auto;
}

.statistik-item {
    width: 190px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 20px 10px;
    text-align: center;
    margin: 0 2px;
}

.statistik-icon {
    color: #2196F3;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.statistik-number {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin: 8px 0;
}

.statistik-label {
    font-size: 1rem;
    color: #666;
}

.statistik-section {
    padding: 20px 0;
}

.statistik-heading {
    text-align: center;
    margin-bottom: 20px;
}