/* --- Global Reset & Base Styles --- */
*,
*::before,
*::after {
    box-sizing: border-box !important; /* Ensure this is always applied */
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    max-width: 100%; /* Cap width to prevent overflow */
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-size: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden; /* Prevent horizontal scrollbars */
    background-color: #f7f7f7; /* Moved from body specific if body itself needs to be 100% */
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.65;
    color: #383838;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative; /* For potential absolute positioned children */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: #0066cc;
    transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

a:hover {
    text-decoration: none;
    color: #004c99;
    opacity: 0.85;
}

/* --- Main Layout Wrappers --- */
/* Force main structural elements to viewport width */
body > header.site-header,
body > main,
body > main > section, /* Sections directly under main */
body > section, /* Sections as direct children of body (if any) */
body > footer.site-footer {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;  /* Horizontal padding handled by .container */
    padding-right: 0 !important; /* Horizontal padding handled by .container */
    float: none !important; /* Clear floats if any were used */
}


.container {
    width: 100%; /* Mobile first: container takes full width of its parent section */
    max-width: 1140px; /* Default max-width for desktop, overridden by media queries for smaller */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;  /* Edge spacing for content */
    padding-right: 15px; /* Edge spacing for content */
}

/* --- Header --- */
.site-header {
    background-color: #ffffff;
    padding-top: 0.8rem; /* Vertical padding only */
    padding-bottom: 0.8rem; /* Vertical padding only */
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.site-header .container { /* Container inside header */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link img {
    max-height: 40px; /* Adjusted for better mobile scaling */
    vertical-align: middle;
}

/* Mobile Navigation - Default */
.mobile-nav-toggle {
    display: block;
    font-size: 1.6rem; /* Slightly adjusted */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    line-height: 1;
    color: #333;
}

.main-nav {
    display: none;
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    z-index: 999;
}

.main-nav.active { display: block; }
.main-nav ul { list-style: none; flex-direction: column; padding: 0.5rem 0; margin: 0; }
.main-nav li { margin-left: 0; }
.main-nav a { display: block; text-decoration: none; color: #333; font-weight: 500; padding: 0.9rem 1.25rem; text-align: left; transition: background-color 0.2s ease, color 0.2s ease; border-bottom: 1px solid #f0f0f0; }
.main-nav li:last-child a { border-bottom: none; }
.main-nav a:hover, .main-nav a.active { background-color: #0066cc; color: #fff; }

/* --- Page Titles Section --- */
.page-title-section {
    background-color: #0059b3;
    color: #fff;
    padding-top: 30px; /* Vertical padding only */
    padding-bottom: 30px; /* Vertical padding only */
    text-align: center;
    margin-bottom: 30px; /* Vertical margin */
}
/* .container within .page-title-section will handle side padding */
.page-title-section h1 { font-size: 1.8rem; margin-bottom: 0.6rem; line-height: 1.25; font-weight: 600; }
.page-title-section .subheadline { font-size: 1rem; font-weight: 300; opacity: 0.9; line-height: 1.4; max-width: 600px; margin: 0 auto; }

/* --- Main Content Area --- */
/* main tag is already styled for width above */
.main-content { /* This class seems to be a general wrapper, ensure it doesn't fight */
    flex: 1;
    padding-bottom: 40px; /* Vertical padding */
    width: 100%; /* If it's used as an inner wrapper */
}


/* --- Footer --- */
.site-footer {
    background-color: #2c3e50;
    color: #bdc3c7;
    padding-top: 30px; /* Vertical padding only */
    padding-bottom: 30px; /* Vertical padding only */
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.5;
}
/* .container within .site-footer will handle side padding */
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 12px 18px; justify-content: center; flex-wrap: wrap; }
.footer-links li a { color: #ecf0f1; font-weight: 500; }
.footer-links li a:hover { color: #0099ff; }
.footer-company-info p { margin-bottom: 6px; }
.footer-company-info strong { color: #ecf0f1;}
.affiliate-disclaimer { font-size: 0.8rem; color: #95a5a6; margin-top: 15px; max-width: 90%; line-height: 1.4; } /* This might need to be inside .container or also width 100% */
.copyright { margin-top: 20px; font-size: 0.85rem; color: #95a5a6;}

/* --- Blog Grid (Home Page) --- */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 25px; margin-top: 30px; }
.blog-card { background-color: #fff; border: 1px solid #e0e0e0; border-radius: 6px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.04); display: flex; flex-direction: column; transition: box-shadow 0.3s ease, transform 0.3s ease; }
.blog-card:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.08); transform: translateY(-3px); }
.blog-card-image img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
.blog-card-content h3 { font-size: 1.25rem; margin: 0 0 10px 0; line-height: 1.3; font-weight: 600; }
.blog-card-content h3 a { color: #333; } .blog-card-content h3 a:hover { color: #0066cc; }
.blog-card-excerpt { font-size: 0.95rem; color: #555; margin-bottom: 15px; flex-grow: 1; line-height: 1.55; }
.blog-card-cta { display: inline-block; background-color: #0066cc; color: #fff !important; padding: 10px 18px; border-radius: 4px; font-weight: 500; text-align: center; transition: background-color 0.3s ease; margin-top: auto; font-size: 0.9rem; }
.blog-card-cta:hover { background-color: #004c99; text-decoration: none; }

/* --- General CTA Buttons --- */
.cta-button { display: inline-block; background-color: #27ae60; color: #fff !important; padding: 12px 25px; font-size: 1rem; font-weight: 500; border-radius: 4px; text-align: center; transition: background-color 0.3s ease, transform 0.2s ease; border: none; cursor: pointer; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.cta-button:hover { background-color: #229954; transform: translateY(-2px); text-decoration: none; }
.section-cta {
    text-align: center;
    margin-top: 35px; margin-bottom: 35px; /* Vertical margins */
    padding-top: 25px; padding-bottom: 25px; /* Vertical padding */
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
/* .container within .section-cta will handle side padding */
.section-cta h2 { font-size: 1.6rem; margin-bottom: 10px; font-weight: 600; color: #333;}
.section-cta p { font-size: 1rem; margin-bottom: 20px; color: #555; max-width: 550px; margin-left: auto; margin-right: auto;}

/* --- Legal Pages & Single Blog Post Common --- */
.content-section {
    background-color: #fff;
    padding: 25px; /* This padding is fine as it's inside a .container usually */
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    margin-top: 20px;
}
.content-section h2 { font-size: 1.6rem; color: #333; margin-top: 10px; margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 12px; font-weight: 600;}
.content-section h2:first-child { margin-top: 0; }
.content-section h3 { font-size: 1.3rem; color: #444; margin-top: 25px; margin-bottom: 10px; font-weight: 600;}
.content-section p, .content-section ul, .content-section ol { margin-bottom: 18px; line-height: 1.75; color: #484848; }
.content-section ul, .content-section ol { list-style-position: outside; margin-left: 25px; }
.content-section strong { color: #222; font-weight: 600;}
.legal-notice { background-color: #fff3cd; color: #856404; padding: 15px; border: 1px solid #ffeeba; border-radius: 5px; margin-bottom: 25px; font-size: 0.95rem; text-align: center; }

/* --- Single Blog Post Specific --- */
.blog-post-content .featured-image { border-radius: 6px; margin-bottom: 25px; }
.blog-post-content .post-meta { font-size: 0.9rem; color: #767676; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.blog-post-content .post-meta span { margin-right: 18px; } .blog-post-content .post-meta .author-name { font-weight: 500; color: #555; }
.blog-post-content .article-body blockquote { border-left: 4px solid #0066cc; padding: 12px 20px; margin: 25px 0; font-style: italic; color: #555; background-color: #f9f9f9; border-radius: 0 4px 4px 0; }
.blog-post-content .article-body a { color: #0066cc; text-decoration: underline; } .blog-post-content .article-body a:hover { color: #004c99; }
.blog-post-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 0.95rem;}
.blog-post-content th, .blog-post-content td { border: 1px solid #ddd; padding: 10px; text-align: left;}
.blog-post-content th { background-color: #f5f5f5; font-weight: 600;}
.blog-post-cta { margin-top: 35px; padding: 25px; background-color: #e9f5ff; border: 1px solid #b3d9ff; border-radius: 6px; text-align: center; }
.blog-post-cta h3 { margin-top: 0; margin-bottom: 10px; color: #0059b3; font-size: 1.3rem; font-weight: 600;}
.blog-post-cta p { margin-bottom: 18px; color: #333; font-size: 1rem; }

/* --- Landing Page --- */
/* .landing-page-hero and .landing-section are covered by body > main > section for width */
.landing-page-hero {
    background: #0059b3 url('../images/hero-insurance.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding-top: 40px;    /* Adjusted vertical padding */
    padding-bottom: 40px; /* Adjusted vertical padding */
    text-align: center;
    position: relative;
}
.landing-page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(rgba(0, 40, 85, 0.6), rgba(0, 40, 85, 0.3)); z-index: 1; }
.landing-page-hero .container { position: relative; z-index: 2; } /* .container handles side padding */

.landing-page-hero h1 {
    font-size: 1.8rem; /* Mobile first hero H1 */
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.25;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.35);
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.landing-page-hero .subheadline {
    font-size: 1rem; /* Mobile first hero subheadline */
    margin-bottom: 25px;
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.45;
    max-width: 95%; /* Allow it to use most of container width */
    margin-left: auto;
    margin-right: auto;
}
.landing-cta-button {
    background-color: #ffae00;
    color: #333 !important;
    padding: 12px 20px; /* Mobile first padding */
    font-size: 1rem;   /* Mobile first font size */
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: normal;
    line-height: 1.3;
}
.landing-cta-button:hover { background-color: #e69c00; transform: translateY(-3px) scale(1.03); box-shadow: 0 6px 20px rgba(0,0,0,0.15); text-decoration: none;}

.landing-section {
    padding-top: 30px;    /* Vertical padding only */
    padding-bottom: 30px; /* Vertical padding only */
    text-align: center;
}
/* .container within .landing-section will handle side padding */
.landing-section.bg-light { background-color: #f9f9f9; }
.landing-section.bg-white { background-color: #ffffff; }

.landing-section h2.section-title {
    font-size: 1.6rem; /* Mobile first section title */
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}
.landing-section h2.section-title::after {
    content: ''; display: block; width: 50px; height: 3px; background-color: #0066cc; margin: 8px auto 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left; /* Content within items can be left, item itself centered */
}
.benefit-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.benefit-item .icon {
    font-size: 1rem; /* For placeholder text */
    color: #0066cc;
    width: auto;
    max-width: 100%;
    line-height: 1;
    margin-bottom: 8px;
    overflow-wrap: break-word;
    word-break: break-all;
}
.benefit-item-content h3 {
    font-size: 1.1rem;
    margin-top: 0;
    margin-bottom: 8px;
    color: #0059b3;
    font-weight: 600;
}
.benefit-item-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 0;
}

.how-it-works-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px; /* Reduced gap for mobile */
}
.step-item {
    background-color: #fff;
    padding: 20px; /* Reduced padding for mobile */
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    text-align: center;
}
.step-item .step-number {
    font-size: 1.4rem; /* Adjusted */
    font-weight: 600;
    color: #fff;
    background-color: #27ae60;
    border-radius: 50%;
    width: 45px; /* Adjusted */
    height: 45px; /* Adjusted */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px auto; /* Adjusted */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.step-item h3 { font-size: 1.1rem; margin-bottom: 8px; color: #333; font-weight: 600; } /* Adjusted */
.step-item p { font-size: 0.9rem; color: #555; line-height: 1.5; } /* Adjusted */

.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; } /* Reduced gap */
.review-card { background-color: #fff; padding: 20px; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); text-align: left; border-left: 5px solid #0066cc; position: relative; }
.review-card::before { content: "\201C"; font-family: Georgia, serif; font-size: 3rem; color: rgba(0, 102, 204, 0.1); position: absolute; top: 5px; left: 10px; line-height: 1; z-index: 0;} /* Adjusted */
.review-card .stars { color: #ffae00; margin-bottom: 10px; font-size: 1rem; position: relative; z-index: 1;} /* Adjusted */
.review-card .review-text { font-style: italic; color: #444; margin-bottom: 10px; line-height: 1.6; position: relative; z-index: 1; font-size: 0.9rem;} /* Adjusted */
.review-card .reviewer-name { font-weight: 500; color: #333; text-align: right; margin-top: 10px; font-size: 0.85rem; position: relative; z-index: 1;} /* Adjusted */

.landing-affiliate-disclosure {
    font-size: 0.8rem; /* Adjusted */
    color: #454545;
    margin: 25px auto 15px auto; /* Adjusted */
    max-width: 100%; /* Will be constrained by .container's padding */
    padding: 15px;    /* This is fine as it's inside a .container */
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    line-height: 1.5;
    text-align: left;
}
.landing-affiliate-disclosure strong { color: #222; }
.landing-affiliate-disclosure p { margin-bottom: 8px;} /* Adjusted */

.trust-badges { margin-top: 20px; display: flex; justify-content: center; align-items: center; gap: 15px; flex-wrap: wrap; } /* Adjusted */
.trust-badge img { max-height: 40px; opacity: 0.85; } /* Adjusted */
.trust-badges p { font-size: 0.85rem !important; }


/* --- Contact Form --- */
/* Styles for contact form are likely inside a .container, so standard padding is fine */
.contact-info p { margin-bottom: 10px; }
.contact-form { margin-top: 30px; background-color: #fff; padding: 25px; border-radius: 6px; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.contact-form h3 { margin-bottom: 18px; text-align: center; color: #333; font-size: 1.4rem; font-weight: 600;}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: #484848; font-size: 0.95rem; }
.form-group input[type="text"], .form-group input[type="email"], .form-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 1rem; background-color: #fdfdfd; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.form-group input[type="text"]:focus, .form-group input[type="email"]:focus, .form-group textarea:focus { border-color: #0066cc; box-shadow: 0 0 0 0.15rem rgba(0,102,204,.2); outline: none; }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input[type="submit"] { display: block; width: 100%; padding: 12px 15px; background-color: #0066cc; color: white !important; border: none; border-radius: 4px; cursor: pointer; font-size: 1.05rem; font-weight: 500; transition: background-color 0.3s ease, transform 0.2s ease; }
.form-group input[type="submit"]:hover { background-color: #004c99; transform: translateY(-2px); text-decoration: none; }
.response-time-info { text-align: center; margin-top: 18px; font-style: italic; color: #555; font-size: 0.9rem; }


/* --- Responsive: Adjust .container and larger screen styles --- */

/* SM - Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        max-width: 540px; /* Start constraining container */
        padding-left: 20px; /* Slightly more padding if desired */
        padding-right: 20px;
    }
    .logo-link img { max-height: 45px; }
    .page-title-section h1 { font-size: 2.1rem; }
    .page-title-section .subheadline { font-size: 1.1rem; }
    .blog-card-content h3 { font-size: 1.3rem; }
    .blog-card-image img { height: 220px; }
    .section-cta h2 { font-size: 1.8rem; } .section-cta p { font-size: 1.05rem;}

    .landing-page-hero h1 { font-size: 2.4rem; }
    .landing-page-hero .subheadline { font-size: 1.2rem; max-width: 90%;}
    .landing-cta-button { padding: 16px 30px; font-size: 1.2rem; } /* Adjusted from 1.3rem */
    .landing-section h2.section-title { font-size: 1.9rem; } /* Adjusted from 2.1rem */

    .benefits-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); } /* Allow 2 columns earlier */
    .benefit-item {
        flex-direction: row; align-items: flex-start; text-align: left; gap: 15px; padding: 20px;
    }
    .benefit-item .icon { margin-bottom: 0; font-size: 1.8rem; width: 35px; }

    .how-it-works-steps { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

    .landing-affiliate-disclosure { max-width: 100%; text-align: left; font-size: 0.85rem; } /* Use container padding */
}

/* MD - Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container { max-width: 720px; }
    .logo-link img { max-height: 55px; }
    .site-header { padding-top: 1rem; padding-bottom: 1rem;}
    .mobile-nav-toggle { display: none; }
    .main-nav {
        display: flex !important; position: static; width: auto; border-bottom: none;
        box-shadow: none; background-color: transparent; top: auto; align-items: center;
    }
    .main-nav ul { display: flex; flex-direction: row; list-style: none; margin: 0; padding: 0; align-items: center; }
    .main-nav li { margin-left: 8px; border-bottom: none; }
    .main-nav li:first-child { margin-left: 0; }
    .main-nav a { padding: 0.6rem 0.9rem; text-align: left; font-size: 0.9rem; font-weight: 500; border-bottom: none; }
    .main-nav a.active, .main-nav a:hover { background-color: #f0f0f0; color: #0066cc; border-radius: 4px; }
    .main-nav a.active { font-weight: 600; }

    .page-title-section { padding-top: 40px; padding-bottom: 40px; margin-bottom: 40px; }
    .page-title-section h1 { font-size: 2.8rem; }
    .page-title-section .subheadline { font-size: 1.4rem; }

    .footer-content { flex-direction: row; justify-content: space-between; align-items: flex-start; text-align: left; }
    .footer-links { justify-content: flex-end; margin: 0; }
    .footer-company-info { text-align: left; flex-basis: 50%;}
    .affiliate-disclaimer { font-size: 0.85rem; text-align: left; max-width: 100%; } /* Constrained by container */
    .copyright { text-align: center; width: 100%; margin-top:25px; }

    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .section-cta { padding-top: 35px; padding-bottom: 35px;} /* Vertical only */
    .section-cta h2 { font-size: 2rem; }

    .content-section { padding: 30px; }
    .content-section h2 { font-size: 1.9rem; } .content-section h3 { font-size: 1.5rem; }

    .blog-post-container { max-width: 720px; margin-left: auto; margin-right: auto; }
    .blog-post-content .article-body table { font-size: 1rem; }
    .blog-post-content .article-body th, .blog-post-content .article-body td { padding: 12px 15px;}

    .landing-page-hero { padding-top: 60px; padding-bottom: 60px; } /* Adjusted */
    .landing-page-hero h1 { font-size: 3rem; } /* Adjusted */
    .landing-page-hero .subheadline { font-size: 1.4rem; max-width: 700px; } /* Adjusted */
    .landing-cta-button { padding: 18px 35px; font-size: 1.3rem; } /* Adjusted */
    .landing-section { padding-top: 50px; padding-bottom: 50px; } /* Adjusted */
    .landing-section h2.section-title { font-size: 2.2rem; margin-bottom: 40px; } /* Adjusted */

    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; } /* Adjusted */
    .benefit-item { padding: 25px; }
    .benefit-item .icon { font-size: 2rem; width: 40px;} .benefit-item-content h3 { font-size: 1.2rem; }

    .how-it-works-steps { grid-template-columns: repeat(3, 1fr); gap: 25px;} /* Adjusted */
    .step-item { padding: 25px 20px; }

    .reviews-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; } /* Adjusted */
    .landing-affiliate-disclosure { padding: 20px; font-size: 0.9rem;}

    .contact-form { padding: 35px; } .contact-form h3 { font-size: 1.6rem; }
    .form-group label { font-size: 1rem; }
    .form-group input[type="text"], .form-group input[type="email"], .form-group textarea { padding: 14px; font-size: 1rem; }
    .form-group textarea { min-height: 130px; }
    .form-group input[type="submit"] { font-size: 1.1rem; }
    .response-time-info { font-size: 0.95rem; }
}

/* LG - Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container { max-width: 960px; }
    .logo-link img { max-height: 60px; }
    .main-nav li { margin-left: 12px; }
    .main-nav a { padding: 0.6rem 1rem; font-size: 0.95rem; }

    .page-title-section h1 { font-size: 3rem; }
    .page-title-section .subheadline { font-size: 1.5rem; }

    .blog-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-post-container { max-width: 760px; }

    .landing-page-hero h1 { font-size: 3.4rem; } /* Adjusted */
    .landing-page-hero .subheadline { font-size: 1.5rem; } /* Adjusted */
    .landing-cta-button { font-size: 1.4rem; padding: 20px 40px; } /* Adjusted */
    .landing-section h2.section-title { font-size: 2.4rem; } /* Adjusted */

    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .benefit-item .icon { font-size: 2.3rem; width: 45px;}
}

/* XL - Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container { max-width: 1140px; } /* Original max-width */
    .main-nav li { margin-left: 18px; }
    .page-title-section h1 { font-size: 3.2rem; }
    .page-title-section .subheadline { font-size: 1.6rem; }
    .blog-post-container { max-width: 800px; }

    .landing-page-hero h1 { font-size: 3.8rem; } /* Adjusted */
    .landing-page-hero .subheadline { font-size: 1.6rem; }
}