/* --- Variables & Reset --- */
:root {
    --primary-blue: #1b3b5a;
    --accent-orange: #c86c2e;
    --text-dark: #222222;
    --text-gray: #555555;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    /* New Section Colors */
    --bg-blue-light: #f0f7ff;
    --bg-orange-light: #fff8f0;
    --font-stack: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-stack), serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 80px;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- FIX: Centering Images --- */
.content-image {
    display: block;
    margin: 0 auto 20px auto; /* Centers the image and adds bottom spacing */
}

.img-caption {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: -10px; /* Pulls caption closer to image since image has bottom margin */
    margin-bottom: 20px;
    font-style: italic;
}

/* --- Header & Logo --- */
.site-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
}

.header-message {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

.brand-logo {
    height: 60px;
    padding: 5px;
    background: var(--white);
    border-radius: 15px;
    border: 2px solid #eee;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* --- Section Styling (Colorful Backgrounds) --- */
.hero-section {
    padding: 30px 0;
    text-align: center;
    background-color: var(--white);
}

.content-block {
    padding: 20px 0; /* Adds breathing room between sections */
}

/* Alternating colors */
.bg-blue-light {
    background-color: var(--bg-blue-light);
    border-top: 1px solid #e1e8f0;
    border-bottom: 1px solid #e1e8f0;
}

.bg-orange-light {
    background-color: var(--bg-orange-light);
    border-top: 1px solid #ffe0b2;
    border-bottom: 1px solid #ffe0b2;
}

/* --- Typography --- */
.advertorial-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.headline {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--primary-blue);
}

.author-block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid var(--accent-orange);
}

.author-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.post-date {
    font-size: 0.8rem;
    color: var(--text-gray);
}

/* --- Content Text --- */
.text-block {
    margin-bottom: 20px;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.text-block h2 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: var(--primary-blue);
    border-bottom: 2px solid var(--accent-orange);
    display: inline-block;
    padding-bottom: 5px;
}

.text-block h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--text-dark);
}

.rounded {
    border-radius: 8px;
}

.shadow-img {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.mt-4 {
    margin-top: 1.5rem;
}

/* --- Lists --- */
.benefit-list {
    list-style: none;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e1e8f0;
    margin-bottom: 20px;
}

.benefit-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.content-bullets, .step-list {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-bullets li, .step-list li {
    margin-bottom: 10px;
}

/* --- Testimonials --- */
.testimonial {
    background: var(--white);
    border-left: 5px solid var(--accent-orange);
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--primary-blue);
}

/* --- CTA Buttons --- */
.cta-insert {
    background-color: #fff3e0;
    border: 1px solid #ffe0b2;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin: 30px 0;
}

.cta-prompt {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-orange);
    color: var(--white);
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(200, 108, 46, 0.3);
    transition: transform 0.2s, background 0.2s;
    line-height: 1.2;
}

.cta-button:hover {
    background-color: #b05c24;
    transform: translateY(-2px);
}

.phone-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

/* Flex column to stack "Call Now" and the Number */
.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-number {
    font-size: 1.3rem;
    font-weight: 900;
}

.final-cta {
    text-align: center;
    background: var(--primary-blue);
    color: var(--white);
    padding: 50px 0;
}

.final-cta h3 {
    margin-bottom: 10px;
}

.final-cta p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.final-cta a {
    color: #fff;
}

.large-btn {
    padding: 12px 35px;
    background-color: var(--white);
    color: var(--accent-orange) !important; /* Force override for large CTA */
    text-decoration: none;
}

.large-btn .btn-number {
    font-size: 1.5rem;
}

/* --- Scroll Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Sticky Footer Mobile --- */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 10px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: flex;
    justify-content: center;
}

.sticky-btn {
    width: 100%;
    max-width: 600px;
    background-color: var(--accent-orange);
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 8px;
    animation: pulse 2s infinite;
}

.sticky-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.sticky-text-col span:first-child {
    font-size: 0.9rem;
    font-weight: 400;
}

.sticky-number {
    font-size: 1.4rem;
    font-weight: 900;
}

.sticky-btn .phone-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 40px 0 120px 0; /* Extra bottom padding so text isn't hidden by sticky mobile button */
    background: #222;
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

footer .copyright {
    font-weight: bold;
    color: #bbb;
    margin-bottom: 20px;
}

.footer-disclaimer {
    border-top: 1px solid #444; /* Subtle separator line */
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.75rem; /* Smaller font for legal disclaimer */
    text-align: justify; /* Makes large blocks of legal text look neater */
    text-align-last: center; /* Centers the last line */
}

.footer-disclaimer strong {
    color: #bbb;
}

.footer-disclaimer a {
    color: #ccc;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer-disclaimer a:hover {
    color: #fff;
}

/* --- Animations --- */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 108, 46, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(200, 108, 46, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(200, 108, 46, 0);
    }
}

/* --- Desktop Media Queries --- */
@media (min-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }

    /* Target the content images specifically for centering and width */
    .content-image {
        max-width: 600px;
        margin: 0 auto 30px auto;
    }
}