body { 
    font-family: 'Inter', sans-serif; 
    /* Background halus dengan gradasi radial agar tidak polos putih */
    background: radial-gradient(circle at top right, #ffffff, #f7f9f8, #f0f4f2);
    background-attachment: fixed;

    /* Mencegah Konten di Copy & Blok */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE 10+ */
    user-select: none;         /* Standar (Chrome, Edge, Opera) */
}

/* Brand Colors */
.bg-brand { 
    background-color: #006038; 
}

.text-brand { 
    color: #006038; 
}

.border-brand { 
    border-color: #006038; 
}

/* Accent Colors */
.bg-calm-blue { 
    background-color: #f0f7ff; 
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hero Section Subtle Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

section {
    animation: fadeIn 0.8s ease-out forwards;
}