/* ===== BASE RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;

    /* Background (choose ONE system) */
    background: linear-gradient(180deg, #e8fff0 0%, #c8f7d4 100%);

    /* default text color (IMPORTANT FIX) */
    color: #0b2f26;

    /* safety for mobile layout */
    overflow-x: hidden;
}

/* images always responsive */
img {
    max-width: 100%;
    height: auto;
}