/* Basic Reset & Body Styles */
body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4; /* Light gray background */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
}

.container {
    background-color: #fff; /* White content background */
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    max-width: 700px;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Headings */
h1 {
    font-family: 'Merriweather', serif;
    color: #2c3e50; /* Dark blue-gray - Kept from original */
    font-size: 2em;
    margin-bottom: 0.5em;
}

h2 {
    font-family: 'Merriweather', serif;
    /* MODIFIED: Changed from blue to the new purple accent */
    color: #8B5CF6; /* Representative Purple from simplemoney.tools */
    font-size: 1.6em;
    margin-top: 1.5em;
    margin-bottom: 0.7em;
}

h3 {
    /* Kept as purple, aligning with h2 now */
    color: #8B5CF6; /* Representative Purple from simplemoney.tools */
    font-size: 1.3em;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
    text-align: left;
}

/* Paragraphs and Text */
p {
    margin-bottom: 1em;
    font-size: 1em;
}

.intro {
    font-size: 1.1em;
    font-weight: bold;
    color: #555;
}

strong {
    /* NOTE: This is currently a darker blue.
       Consider changing this to a darker purple (e.g., #7C3AED)
       or the same purple (#8B5CF6) if you want it to align with h2/h3.
       Or keep as is if you prefer the blue for strong emphasis. */
    color: #3170D5; /* Slightly darker blue for strong text */
}

/* Benefits List */
.benefits-list {
    list-style-type: none;
    padding-left: 0;
    text-align: left;
    margin-bottom: 1.5em;
}

.benefits-list li {
    margin-bottom: 0.6em;
    font-size: 1em;
    padding-left: 5px;
}

/* Call to Action */
.cta-lead {
    font-size: 1.1em;
    margin-top: 1.5em;
}

.cta-question {
    font-size: 1.2em;
    margin-bottom: 1em;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    /* The CTA button is still blue. If you want this to be purple too,
       change background-color to #8B5CF6 and adjust the hover color. */
    background-color: #3B82F6; /* Representative Blue */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 0.5em;
    margin-bottom: 1.5em;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.cta-button:hover {
    background-color: #2563EB; /* Darker shade of the blue */
    transform: translateY(-2px);
}

/* Footer Note */
.footer-note {
    font-size: 0.9em;
    color: #777;
    margin-top: 2em;
    border-top: 1px solid #eee;
    padding-top: 1em;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    .container {
        padding: 20px;
    }
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.4em;
    }
    h3 {
        font-size: 1.2em;
    }
    .cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
}