/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header Styles */
header {
    background: #003366; /* Dark blue, common for corporate/tech */
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    border-bottom: #FFD700 5px solid; /* Gold accent, Raise a Hood often uses yellow/gold */
}

header .logo-container {
    padding-bottom: 10px;
}

header #rah-logo {
    height: 60px;
    margin-right: 20px;
}

header #ezzey-logo {
    height: 50px;
    background-color: #fff; /* Assuming Ezzey logo looks better on white */
    padding: 5px;
    border-radius: 5px;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: bold;
}

/* Navigation Styles */
nav {
    background: #4682B4; /* Steel Blue - a complementary blue */
    color: #fff;
    padding: 0.75rem;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #FFD700; /* Gold accent on hover */
    text-decoration: underline;
}

/* Main Content Styles */
main {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

section {
    padding: 40px 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

section:last-child {
    border-bottom: none;
}

section h2 {
    color: #003366; /* Dark Blue */
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid #FFD700; /* Gold accent */
    padding-bottom: 10px;
}

article {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 5px solid #4682B4; /* Steel Blue accent */
    border-radius: 5px;
}

article h3 {
    color: #004080; /* Slightly lighter dark blue */
    font-size: 1.8rem;
    margin-top: 0;
}

.content-placeholder, .diagram-placeholder {
    padding: 15px;
    margin-top: 10px;
    border-radius: 4px;
    min-height: 100px; /* For visibility before content is added */
}

.content-placeholder {
    background-color: #e9ecef; /* Light grey for content areas */
    color: #495057;
}

.diagram-placeholder {
    background-color: #d1e7dd; /* Light green for diagram areas */
    color: #0f5132;
    text-align: center;
    font-style: italic;
    padding: 30px;
    border: 2px dashed #0f5132;
}

/* Illustrative Image Styling */
.illustrative-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background: #003366; /* Dark Blue */
    color: #fff;
    margin-top: 30px;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: #FFD700; /* Gold accent */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }
    nav a {
        display: block;
        margin: 10px 0;
    }
    section h2 {
        font-size: 1.8rem;
    }
    article h3 {
        font-size: 1.5rem;
    }
}


/* Callout Button Styles */
.callout-button-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.callout-button {
    display: inline-block;
    background-color: #FFD700; /* Gold accent from header */
    color: #003366; /* Dark blue text */
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #003366;
}

.callout-button:hover {
    background-color: #003366; /* Dark blue background on hover */
    color: #FFD700; /* Gold text on hover */
    border-color: #FFD700;
}



/* === Additional Styles for Visual Engagement === */

main section {
    background-color: #ffffff; /* White background for sections */
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #003366; /* Accent border */
}

main section h2 {
    color: #003366; /* Dark blue for section titles */
    border-bottom: 2px solid #FFD700; /* Gold accent under H2 */
    padding-bottom: 10px;
    margin-top: 0;
}

main section h3 {
    color: #005A9C; /* A slightly lighter blue for sub-headings */
    margin-top: 20px;
    margin-bottom: 10px;
}

.illustrative-image {
    max-width: 90%; /* Slightly less than 100% to have some padding */
    height: auto;
    display: block;
    margin: 25px auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

nav {
    background-color: #003366;
    padding: 12px 0;
    text-align: center;
    margin-bottom: 25px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav a {
    color: #ffffff;
    margin: 0 18px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block; /* Allows for transform */
}

nav a:hover {
    color: #FFD700;
    transform: translateY(-2px); /* Slight lift on hover */
}

footer {
    background-color: #333333; /* Darker footer */
    color: #f1f1f1;
    padding: 25px;
    text-align: center;
    border-top: 3px solid #FFD700; /* Gold accent top border */
    margin-top: 40px;
}

footer p {
    margin: 8px 0;
}

footer a {
    color: #FFD700; /* Gold links in footer */
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Removing list-style from main ul elements for a cleaner look if desired */
/* section ul {
    list-style-type: none; 
    padding-left: 0; 
}

section ul li {
    padding-left: 1em; 
    text-indent: -.7em; 
    margin-bottom: 0.5em;
}

section ul li::before {
    content: "\2022 "; 
    color: #FFD700; 
    font-weight: bold;
    display: inline-block; 
    width: 1em; 
    margin-left: -1em;
} */

/* General body improvements */
body {
    font-family: 'Arial', sans-serif; /* Cleaner sans-serif font */
    background-color: #e9eef2; /* Lighter page background */
    color: #333;
    margin: 0;
    padding: 0;
}

header h1 {
    font-size: 2em; /* Slightly smaller main title */
    margin-bottom: 15px;
}

.logo-container img#rah-logo {
    max-height: 60px; /* Adjusted logo size */
}

.logo-container img#ezzey-logo {
    max-height: 50px; /* Adjusted logo size */
}

