body {
    margin: 0;
    background: #f2fff5;
    font-family: Arial;
    color: #1b7f41;
}

.container {
    max-width: 750px;
    margin: 50px auto;
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    text-align: center;
    font-size: 32px;
}

.subtitle {
    text-align: center;
    margin-bottom: 25px;
    color: #2e8b58;
}

.section {
    margin: 25px 0;
    padding: 20px;
    background: #eaffea;
    border-left: 6px solid #1b7f41;
    border-radius: 12px;
}

.section h2 {
    margin-bottom: 10px;
}

.section ul {
    line-height: 2;
}

/* ================================
   GLOBAL ANIMATIONS FOR ALL PAGES
   Add this file link to every page
================================ */

/* Fade-in Up Animation */
.fade-up {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Fade-in Scale Animation */
.fade-scale {
    animation: fadeScale 0.8s ease forwards;
    opacity: 0;
}

@keyframes fadeScale {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Slide-in Left Animation */
.slide-left {
    animation: slideLeft 0.8s ease forwards;
    opacity: 0;
}

@keyframes slideLeft {
    0% {
        transform: translateX(-30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide-in Right Animation */
.slide-right {
    animation: slideRight 0.8s ease forwards;
    opacity: 0;
}

@keyframes slideRight {
    0% {
        transform: translateX(30px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Soft Hover Zoom Effect */
.hover-zoom:hover {
    transform: scale(1.02);
    transition: 0.3s ease;
}

/* Soft Button Pop Animation */
button {
    transition: 0.3s ease !important;
}

button:hover {
    transform: scale(1.05);
}

/* Section Stagger */
.section {
    animation: fadeUp 0.7s ease forwards;
}