/* --- Global Resets and Typography --- */
:root {
    /* New Blue Palette */
    --primary-color: #3d7edb;
    /* Reassuring Mid-Blue (Trustworthy, Calm) */
    --secondary-color: #ffcc00;
    /* Warm Accent Gold/Yellow (Optimism, Attention) */
    --text-dark: #333;
    --text-light: #fff;
    --background-light: #f9f7f4;
    /* Creamy Off-White - Remains easy on the eyes */
    --border-color: #ddd;
}

/* Use a robust, highly readable font stack */
body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    /* Improves readability for long text blocks */
    margin: 0;
    padding: 0;
    background-color: var(--background-light);
    color: var(--text-dark);
}

/* Container limits content width for comfortable reading on large screens */
.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* --- Typography Adjustments (Crucial for Target Audience) --- */
h1 {
    color: var(--secondary-color);
}

h2,
h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

h1 {
    font-size: 3.8em;
    /* Large and prominent */
}

h2 {
    font-size: 2em;
    /* Changing the accent to use the secondary color for contrast */
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}

p {
    margin-bottom: 1.2em;
    font-size: 1.1em;
    /* Ensure paragraphs are adequately sized */
}


/* --- Header/Hero Section --- */
.hero {
    background-color: var(--primary-color);
    /* Blue background */
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tagline {
    font-size: 1.5em;
    margin-top: -10px;
    margin-bottom: 30px;
}


/* --- Buttons and Calls to Action (CTA) --- */
.button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 20px;
}

.primary-cta {
    background-color: var(--secondary-color);
    /* Gold button stands out nicely against blue */
    color: var(--text-dark);
    border: none;
    font-size: 1.1em;
}

/* Adjusting hover to a slightly darker blue for visual depth on the primary color */
.primary-cta:hover {
    background-color: #e6b800;
}


/* --- General Card Styling (For Section Separation) --- */
.card {
    background-color: var(--text-light);
    padding: 40px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
}

/* --- Specific Section Styling --- */