/* General Body & Typography */
:root {
    --primary-color: #005A9C; /* A confident, trustworthy blue */
    --secondary-color: #FDB813; /* An energetic, optimistic yellow/gold */
    --dark-grey: #333333;
    --light-grey: #f4f4f4;
    --text-color: #4A4A4A;
    --white-color: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white-color);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

h1, h2, h3 {
    font-weight: 700;
    color: var(--dark-grey);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 40px; }
h3 { font-size: 1.4rem; }
p { font-size: 1.1rem; }

hr {
    border: none;
    height: 1px;
    background-color: #e0e0e0;
    margin: 60px 0;
}

/* Header & Navigation (Shared) */
header {
    background: var(--white-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* --- HOMEPAGE SPECIFIC SECTIONS --- */

.hero-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    text-align: center;
    padding: 100px 20px;
}

.hero-section h1 { color: var(--white-color); }
.hero-section .subtitle { max-width: 600px; margin: 20px auto 30px; font-size: 1.2rem; }

.benefits-section { padding: 80px 20px; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--white-color);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.benefit-card h3 { color: var(--primary-color); margin-top: 0; }

/* --- BENEFITS PAGE SPECIFIC SECTIONS --- */

.page-header {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--light-grey);
}

.page-header h1 { margin-bottom: 10px; }
.page-header .subtitle { max-width: 700px; margin: 0 auto; font-size: 1.2rem; }

.page-content { padding: 80px 0; }

.quick-benefits, .detailed-summary { max-width: 800px; margin: 0 auto; }

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.checkmark-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.checkmark-icon svg { width: 20px; height: 20px; fill: var(--white-color); }
.benefit-item p { margin: 0; padding-top: 2px; }
.benefit-detail h3 { color: var(--primary-color); }
.benefit-detail { margin-bottom: 30px; }

/* --- SHARED SECTIONS & COMPONENTS --- */

.content-section { padding: 80px 20px; }
.content-section.bg-light { background-color: var(--light-grey); }
.content-section p { max-width: 700px; margin: 20px auto 0 auto; text-align: center; }

.cta-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 { color: var(--white-color); }
.cta-section p { max-width: 600px; margin: 0 auto 30px; }

.cta-button {
    background: var(--secondary-color);
    color: var(--dark-grey);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    background-color: #ffc43d;
}

/* Footer (Shared) */
footer {
    background: var(--dark-grey);
    color: var(--white-color);
    text-align: center;
    padding: 20px;
}

footer p { margin: 5px 0; font-size: 0.9rem; }

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .nav-links { display: none; } /* Hides nav links on mobile; requires JS for a hamburger menu */
    .hero-section, .page-header { padding: 80px 20px; }
}