/* RESET DASAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* UTILITY CLASSES */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Latar belakang HIJAU untuk bagian tertentu (Misal: Hero Section & Harga) */
.green-background {
    background-color: #4CAF50; /* Hijau cerah, bisa diganti dengan kode hijau yang lebih spesifik */
    color: #fff;
    padding: 60px 0;
}

/* HEADER & NAVIGASI */
header {
    background: #388E3C; /* Hijau yang lebih gelap untuk header */
    color: #fff;
    padding: 10px 0;
    border-bottom: 3px solid #66BB6A;
}

header h1 {
    float: left;
}

header nav {
    float: right;
}

header ul {
    list-style: none;
}

header ul li {
    display: inline;
    margin-left: 20px;
}

header ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* HERO SECTION (Bagian Utama) */
#hero {
    text-align: center;
    padding: 100px 0;
}

#hero h2 {
    margin-bottom: 15px;
    font-size: 2.5em;
}

#hero p {
    margin-bottom: 30px;
    font-size: 1.2em;
}

.cta-button {
    display: inline-block;
    background: #FFC107; /* Warna kontras (misal: Kuning Emas) */
    color: #333;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background: #FFEB3B;
}

/* SECTION LAIN */
section {
    padding: 40px 0;
    text-align: center;
}

section:nth-child(even) { /* Untuk section non-hero/harga */
    background: #f4f4f4;
}

h3 {
    font-size: 2em;
    margin-bottom: 30px;
}

/* FITUR LIST */
.fitur-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.fitur-item {
    width: 30%;
    min-width: 250px;
    padding: 20px;
    margin: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.fitur-item h4 {
    color: #4CAF50;
    margin-bottom: 10px;
}

/* FOOTER */
footer {
    background: #2E7D32; /* Hijau sangat gelap untuk footer */
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
}