/* Styling Umum */
body {
    font-family: Arial, sans-serif; /* Ganti dengan font yang lebih elegan jika perlu */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

/* ==================== HEADER / NAVIGATION ==================== */
header {
    display: flex; /* Mengatur tata letak horizontal */
    justify-content: space-between; /* Memisahkan logo dan nav */
    align-items: center;
    padding: 15px 5%;
    background-color: #fff; /* Latar belakang putih */
    border-bottom: 1px solid #eee;
}

header .logo h1 {
    margin: 0;
    color: #000; /* Warna logo */
    font-size: 28px;
}

nav ul {
    list-style: none; /* Menghilangkan bullet point */
    margin: 0;
    padding: 0;
    display: flex; /* Membuat menu horizontal */
}

nav ul li {
    margin-left: 25px; /* Jarak antar menu */
}

nav ul li a {
    text-decoration: none; /* Menghilangkan garis bawah */
    color: #000;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #1a73e8; /* Contoh warna hover */
}

/* ==================== HERO SECTION ==================== */
.hero {
    /* Anda harus menambahkan gambar latar belakang di sini untuk hasil terbaik */
    /* background-image: url('path/to/hero-image.jpg'); */
    background-color: #f4f4f4; /* Latar belakang abu-abu sementara */
    background-size: cover;
    background-position: center;
    color: #333;
    text-align: left;
    padding: 100px 5%;
    height: 400px; /* Contoh tinggi */
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: #1a73e8; /* Warna primer */
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
}

/* ==================== FEATURE SECTIONS ==================== */
#features {
    padding: 50px 5%;
    background-color: #fff;
}

.features-grid {
    display: grid;
    /* Membuat 4 kolom sama besar */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    text-align: center;
}

.feature-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.feature-item h3 {
    color: #333;
    font-size: 18px;
}

.link-more {
    color: #1a73e8;
    text-decoration: none;
    font-weight: bold;
}

/* ==================== SECTIONS UMUM ==================== */
section {
    padding: 60px 5%;
}

h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}