* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    /* Gradasi sesuai referensi gambar kamu */
    background: linear-gradient(to bottom, #c9ea7b, #f3eef5);
    color: #4b3f72;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    width: 100%;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -1px;
}

.logo span { color: #BADA55; }

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #4b3f72;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: #BADA55;
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links .active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links .active {
    color: #BADA55;
}

/* Main Layout */
.container {
    padding: 80px 8%;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 120px;
}

.hero.reverse {
    flex-direction: row-reverse;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #4b3f72;
}

.subtitle {
    font-size: 32px;
    color: #BADA55;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Grouping Button and Circle Icon */
.btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-filled {
    background: #BADA55;
    color: white;
    padding: 12px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-filled:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(186, 218, 85, 0.3);
}

.circle-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #BADA55;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #BADA55;
    font-weight: 700;
    font-size: 14px;
    transition: 0.3s;
}

.circle-icon:hover {
    background: #BADA55;
    color: white;
}

/* Hero Image */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Responsive */
@media (max-width: 968px) {
    .hero, .hero.reverse {
        flex-direction: column;
        text-align: center;
    }
    .hero-text p { margin: 0 auto 30px; }
    .btn-group { justify-content: center; }
}