body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
}

header {
    background-color: #4CAF50; /* Hijau segar */
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 5px solid #2e7d32;
}

h1 {
    font-size: 2em;
    margin: 0;
}

main {
    max-width: 850px;
    margin: 30px auto;
    padding: 0 20px;
}

article {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.intro {
    font-size: 1.1em;
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

section {
    margin-bottom: 40px;
}

h2 {
    color: #388e3c; /* Hijau lebih gelap */
    font-size: 1.5em;
    margin-top: 0;
    padding-bottom: 5px;
    border-bottom: 2px solid #a5d6a7;
}

h3 {
    color: #444;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    background: #e8f5e9; /* Latar belakang item list */
    margin: 10px 0;
    padding: 12px 15px;
    border-radius: 5px;
    border-left: 5px solid #4CAF50;
}

/* Penyesuaian warna pilar untuk visualisasi */
.pilar.nutrisi li { border-left-color: #ff9800; } /* Oranye */
.pilar.fisik li { border-left-color: #2196F3; } /* Biru */
.pilar.tidur li { border-left-color: #673AB7; } /* Ungu */
.pilar.mental li { border-left-color: #f44336; } /* Merah */


.kesimpulan {
    margin-top: 40px;
    padding: 20px;
    background-color: #f0f4c3; /* Latar belakang kuning muda */
    border-radius: 8px;
    border: 1px solid #cddc39;
}

.kesimpulan h3 {
    color: #827717;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    color: #777;
    font-size: 0.85em;
}
.button-wrapper {
    text-align: center;
    margin: 50px auto;
}

.image-daftar-btn {
    /* Ganti URL di bawah ini dengan lokasi file gambar yang Anda inginkan */
    background-image: url('URL_GAMBAR_TOMBOL_ANDA.jpg'); 
    
    background-size: cover; /* Pastikan gambar menutupi seluruh tombol */
    background-position: center;
    
    /* Pengaturan Ukuran Tombol */
    width: 300px; 
    height: 80px;
    
    /* Display dan Posisi */
    display: inline-flex;
    justify-content: center; /* Pusatkan horizontal */
    align-items: center; /* Pusatkan vertikal */
    
    /* Estetika */
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Style untuk Teks */
.image-daftar-btn span {
    color: white; /* Warna teks putih agar kontras */
    font-size: 1.5em;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7); /* Tambahkan bayangan agar teks jelas */
    z-index: 2; /* Pastikan teks di atas efek hover */
}

/* Efek Overlay Saat Hover */
.image-daftar-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Overlay gelap awal */
    transition: background-color 0.3s ease;
    z-index: 1;
}

/* Efek Hover */
.image-daftar-btn:hover {
    transform: scale(1.05); /* Sedikit membesar */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

.image-daftar-btn:hover::before {
    /* Mencerahkan overlay saat di-hover untuk menonjolkan */
    background-color: rgba(0, 0, 0, 0.1); 
}