/* 
AOD Counselling Models basic styles By ukesbaha.com
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f0f0f0; /* a light gray colour*/
    margin: 20px;
    padding: 0px;
}

/* Header styles */

header {
    background-color: #8BC34A; /* a medium to light green colour */
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    color: #fff; /* White color for better contrast */
}

header h2 {
    font-size: 1.8em;
    color: #666;
    margin-top: 10px;
}

/* Main styles */

main {
    max-width: 800px;
    margin: 0 auto;
}

/* Section styles */

section {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

section h2 {
    font-size: 1.6em;
    color: #333;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

section h3 {
    font-size: 1.3em;
    color: #555;
    margin-top: 20px;
}

section ul {
    margin-bottom: 10px;
    padding-left: 20px;
}

section ul ul {
    margin-top: 5px;
}

section p {
    color: #666;
    font-size: 1.1em;
    line-height: 1.8;
}


footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

footer p {
    font-size: 0.9em;
    color: #666;
}

/* Add more styles as needed */
