body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f9fb; /* Soft background for the whole page */
}
.cta-gradient {
    background-color: #01505d;
}
.hero-text-shadow {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.section-with-shape {
    position: relative;
    overflow: hidden; /* Prevents shape from spilling out */
    background-color: #ffffff;
}
/* Shape for Keuntungan Section */
#keuntungan::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -250px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(1, 80, 93, 0.08), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}
/* Shape for Kisah Sukses Section */
#kisah-sukses::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(254, 226, 3, 0.1), transparent 70%);
    border-radius: 50%;
    transform: rotate(15deg);
    z-index: 0;
}
.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(254, 226, 3, 0.4);
}
.step-icon {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.whatsapp-icon {
    font-size: 2.5rem; /* Custom size for the WhatsApp icon */
}