#fw-section-custom-html-01d05f8a-2b9b-448c-8c16-4c8d8cf3ada8 {

body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.7;
            /* UX Change: Dark green background base */
            background-color: #0a2f16; 
            /* UX Change: Off-white text for better readability on dark background than pure white */
            color: #e0e0e0; 
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        h1 {
            font-size: 2.2rem;
            /* UX Change: Brighter white for main title */
            color: #ffffff;
            margin-bottom: 15px;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 1.5rem;
            /* UX Change: Light mint green for secondary titles */
            color: #b9f6ca;
            /* UX Change: Darker, subtle border color */
            border-bottom: 2px solid #1e572e;
            padding-bottom: 10px;
            margin-top: 45px;
            margin-bottom: 25px;
        }
        p {
            margin-bottom: 18px;
        }
        ul {
            list-style-type: none;
            padding: 0;
        }
        li {
            margin-bottom: 25px;
            padding-left: 18px;
            /* UX Change: Brightened accent border for contrast against dark bg */
            border-left: 3px solid #66bb6a; 
        }
        strong {
            /* UX Change: White for strong emphasis */
            color: #ffffff;
            font-weight: 700;
        }
        em {
             color: #b9f6ca;
        }
        a {
            /* UX Change: Light green color for links for high contrast */
            color: #81c784;
            text-decoration: none;
            border-bottom: 1px dotted #81c784;
            transition: color 0.2s ease;
        }
        a:hover {
            color: #b9f6ca;
            border-bottom-style: solid;
        }
        .intro {
            font-size: 1.15rem;
            /* UX Change: Slightly lighter text for intro */
            color: #f1f8e9;
        }
        .cta {
            /* UX Change: Darker green container for CTA that stands out from background */
            background-color: #144a28;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
            font-weight: 500;
            border: 1px solid #2e7d32;
            color: #ffffff;
        }
        footer {
            margin-top: 60px;
            text-align: center;
            font-size: 1.2rem;
            font-weight: bold;
            /* UX Change: Bright accent color for footer */
            color: #66bb6a;
        }
}