.intro-card{
    text-align:center;
    padding:50px 35px;
    background:#f1f8e9;
    border:2px solid #c5e1a5;
}

/* ICON */
.intro-icon{
    font-size:60px;
    margin-bottom:15px;
}

/* JUDUL */
.intro-title{
    font-size:36px;
    font-weight:700;
    color:#2e7d32;
    margin-bottom:15px;
    letter-spacing:1px;
}

/* DESKRIPSI */
.intro-text{
    font-size:18px;
    line-height:1.7;
    color:#555;
    max-width:500px;
    margin:0 auto 25px;
}

.funfact-container{
    max-width:800px;
    margin:auto;
    padding:40px 20px;
    font-family:Arial, sans-serif;
}

/* HEADER */
.header-box{
    text-align:center;
    margin-bottom:30px;
}

.header-box h1{
    font-size:38px;
}

.header-box p{
    color:#666;
}

/* CARD SLIDE */
.fact-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
    text-align:center;
    animation:slide 0.4s ease;
}

.fact-card h2{
    color:#2e7d32;
    margin-bottom:10px;
}

.fact-text{
    color:#555;
    line-height:1.7;
}

/* GAMBAR */
.fact-img{
    width:100%;
    max-height:250px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:15px;
}

/* BUTTON */
.btn-next{
    margin-top:25px;
    padding:12px 25px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg, #43a047, #2e7d32);
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.btn-next:hover{
    transform:scale(1.05);
}

.counter{
    margin-top:10px;
    color:#777;
}

/* ANIMATION */
@keyframes slide{
    from{
        opacity:0;
        transform:translateX(40px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}