@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #0f4c81;       /* Deep Trust Blue */
    --primary-light: #eff6ff;
    --primary-dark: #093154;
    --secondary-color: #ff4b82;     /* Accent Rose Pink */
    --secondary-light: #fff1f2;
    --secondary-hover: #e0376d;
    --secondary-dark: #b81d4f;
    --text-dark: #0f172a;           /* Slate 900 */
    --text-medium: #334155;         /* Slate 700 */
    --text-muted: #64748b;          /* Slate 500 */
    --text-light: #f8fafc;          /* Slate 50 */
    --bg-light: #f8fafc;            /* Slate 50 */
    --bg-card: #ffffff;
    --border-color: #e2e8f0;        /* Slate 200 */
    --border-focus: #ff4b82;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --border-radius-md: 10px;
    --border-radius-lg: 16px;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-medium);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

.blog-post-header h1 {
    color: white;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

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

/* Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.badge-blue {
    background-color: var(--primary-color);
    color: white;
    padding: 6px 16px;
    font-size: 11px;
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.badge-pink {
    background-color: var(--secondary-light);
    color: var(--secondary-color);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 12px;
}

/* Header & Navigation */
#site-header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 0;
    box-shadow: var(--shadow-md);
}


.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-cta {
    background-color: var(--secondary-color);
    color: white;
    padding: 10px 22px;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(255, 75, 130, 0.3);
    transition: var(--transition-normal);
}

.nav-cta:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(255, 75, 130, 0.4);
}

.nav-cta:active {
    transform: translateY(0);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition-fast);
}

/* Mobile Menu Panel */
.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 99;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    color: var(--text-dark);
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mobile-nav .nav-cta {
    text-align: center;
    border-bottom: none;
    margin-top: 10px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    background-color: #f1f5f9;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 25% center;
}

/* Glassmorphism content container */
.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-end; /* Push content to the right */
    padding: 60px 0;
}

.hero-card {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    max-width: 580px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title {
    font-size: 42px;
    line-height: 1.15;
    color: var(--secondary-color); /* Pink color from the screenshot */
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-description {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(255, 75, 130, 0.3);
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 75, 130, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: var(--transition-normal);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Section Intro */
.section-intro {
    max-width: 680px;
    margin: 0 auto 50px auto;
}

.section-title {
    font-size: 32px;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.section-title.left-aligned::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

/* Main Insurances Grid */
.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.insurance-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.insurance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transition: var(--transition-normal);
}

.insurance-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 75, 130, 0.2);
}

.insurance-card:hover::before {
    background-color: var(--secondary-color);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-md);
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 20px;
    transition: var(--transition-fast);
}

.insurance-card:hover .card-icon {
    background-color: var(--secondary-light);
    color: var(--secondary-color);
}

.card-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-link svg {
    transition: var(--transition-fast);
}

.insurance-card:hover .card-link {
    color: var(--secondary-color);
}

.insurance-card:hover .card-link svg {
    transform: translateX(4px);
}

/* Everyday Essentials Section */
.bg-light-section {
    background-color: #f1f5f9;
}

.essentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.essential-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    transition: var(--transition-normal);
}

.essential-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 76, 129, 0.2);
}

.essential-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.essential-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.essential-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Wizard / Insurance Finder Tool */
.wizard-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
}

.wizard-section h2 {
    color: white;
}

.wizard-section p {
    color: rgba(255, 255, 255, 0.8);
}

.wizard-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    color: var(--text-dark);
}

.wizard-progress {
    height: 6px;
    background-color: var(--border-color);
    border-radius: 3px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.wizard-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 33%;
    background-color: var(--secondary-color);
    transition: width var(--transition-normal);
}

.wizard-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.wizard-step.active {
    display: block;
}

.wizard-question {
    font-size: 22px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.wizard-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 600px) {
    .wizard-options {
        grid-template-columns: 1fr 1fr;
    }
}

.option-card {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}

.option-card:hover {
    border-color: var(--secondary-color);
    background-color: var(--secondary-light);
}

.option-card.selected {
    border-color: var(--secondary-color);
    background-color: var(--secondary-light);
}

.option-card input[type="radio"] {
    position: absolute;
    top: 20px;
    right: 20px;
    accent-color: var(--secondary-color);
    width: 18px;
    height: 18px;
}

.option-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
}

.option-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.wizard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-back {
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.btn-back:hover {
    color: var(--text-dark);
}

/* Wizard Results Page */
.results-container {
    text-align: center;
    padding: 20px 0;
}

.results-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.results-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.results-verdict {
    background-color: var(--primary-light);
    border-radius: var(--border-radius-md);
    padding: 20px;
    margin: 24px 0;
    border-left: 4px solid var(--primary-color);
    text-align: left;
}

.results-verdict h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.results-verdict p {
    font-size: 14px;
    color: var(--text-medium);
}

.wizard-restart {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    text-decoration: underline;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-xl);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-text {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 8px 16px;
    border-radius: var(--border-radius-md);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cookie-accept {
    background-color: var(--secondary-color);
    color: white;
    border: none;
}

.cookie-accept:hover {
    background-color: var(--secondary-hover);
}

.cookie-decline {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.cookie-decline:hover {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

@media (min-width: 600px) {
    .cookie-banner {
        left: 30px;
        bottom: 30px;
    }
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-header {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.faq-icon::before {
    content: '+';
    font-weight: 600;
    font-size: 16px;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    color: var(--text-muted);
    font-size: 14px;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon {
    background-color: var(--secondary-color);
    color: white;
    transform: rotate(45deg);
}

.faq-item.active .faq-content {
    padding-bottom: 24px;
    max-height: 200px; /* Adjust according to contents */
}

/* Topics I Discuss Section */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 32px;
    margin-top: 40px;
}

.topic-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.topic-icon {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.topic-icon svg {
    width: 36px;
    height: 36px;
    color: var(--text-dark);
}

.topic-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.topic-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Stress-free System Navigation Section */
.nav-system-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.nav-system-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-system-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 24px;
}

.nav-system-text {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-blog-explore {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition-normal);
}

.btn-blog-explore:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.2);
}

.nav-system-right {
    width: 100%;
}

.nav-system-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.nav-system-links li {
    border-bottom: 1px solid var(--border-color);
}

.nav-system-links li:first-child {
    border-top: 1px solid var(--border-color);
}

.nav-system-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.nav-system-links a span {
    transition: var(--transition-fast);
}

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

.nav-system-links a:hover span {
    transform: translateX(4px);
}

.nav-system-links .arrow-icon {
    width: 24px;
    height: 24px;
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.nav-system-links a:hover .arrow-icon {
    transform: translateX(8px);
    color: var(--primary-color);
}

/* Showcases Section */
.showcase-pretitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 48px;
    text-transform: uppercase;
}

.showcase-item {
    display: flex;
    gap: 80px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.showcase-item:last-child {
    margin-bottom: 0;
}

.showcase-col-title {
    flex: 1;
}

.showcase-col-desc {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.showcase-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.showcase-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-medium);
    margin-bottom: 24px;
}

.btn-showcase-more {
    display: inline-block;
    padding: 12px 28px;
    background-color: #2563eb;
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: var(--transition-normal);
}

.btn-showcase-more:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.showcase-item.reverse {
    flex-direction: row-reverse;
}

/* Legal Requirement Section */
.requirement-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.requirement-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.requirement-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
}

.requirement-content {
    flex: 1.2;
}

.requirement-quote {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

/* Media Query Responsive Overrides for New Sections */
@media (max-width: 1024px) {
    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
}

@media (max-width: 900px) {
    .nav-system-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .nav-system-title {
        font-size: 28px;
    }
    
    .nav-system-links a {
        font-size: 18px;
        padding: 20px 4px;
    }
    
    .showcase-item, .showcase-item.reverse {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .showcase-title {
        font-size: 28px;
    }
    
    .showcase-text {
        margin-bottom: 20px;
    }
    
    .requirement-grid {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .requirement-quote {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .topics-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Contact Section & Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.contact-details {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.contact-detail-text h4 {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-detail-text p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--border-focus);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(255, 75, 130, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
}

.form-success-message {
    display: none;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
    border-radius: var(--border-radius-md);
    padding: 16px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.4s ease;
}

/* Blog Section on Homepage / Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    background-color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

/* Beautiful color overlays for blog placeholding */
.blog-image-1 { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.blog-image-2 { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }
.blog-image-3 { background: linear-gradient(135deg, #10b981 0%, #047857 100%); }

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    opacity: 0.8;
}

.blog-card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.blog-title {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a:hover {
    color: var(--secondary-color);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-link {
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card:hover .blog-card-link {
    color: var(--secondary-color);
}

/* Footer styling */
/* Footer styling */
.footer {
    background-color: #f3f4f6; /* Light gray background */
    color: var(--text-medium);
    padding: 80px 0 40px 0;
    border-top: 1px solid var(--border-color);
}

.footer h3, .footer h4 {
    color: var(--text-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
}

.footer-brand-logo {
    height: 60px;
    width: auto;
}

.footer-heading {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-medium);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 4px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    color: var(--text-medium);
}

.footer-contact-info a {
    color: inherit;
    transition: var(--transition-fast);
}

.footer-contact-info a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Inner Page Sub-Hero Banner */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 80px 0 60px 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    font-size: 40px;
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* Inner Page Content Structure */
.page-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 900px) {
    .page-container {
        grid-template-columns: 1.8fr 1fr;
    }
}

.page-container-single {
    max-width: 900px;
    margin: 0 auto;
    display: block;
}

/* Quick Summary Card at bottom of content */
.summary-card {
    margin-top: 40px;
    background-color: var(--primary-light);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
}

.summary-card h3 {
    color: var(--primary-dark);
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(15, 76, 129, 0.15);
    padding-bottom: 20px;
}

.summary-grid-item strong {
    color: var(--primary-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.summary-grid-item span {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

.summary-grid-item span small {
    color: var(--text-muted);
    font-size: 12px;
    display: block;
    margin-top: 2px;
}

.summary-card-footer {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .summary-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.page-main-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.page-main-content h2 {
    font-size: 24px;
    margin: 32px 0 16px 0;
}

.page-main-content h2:first-of-type {
    margin-top: 0;
}

.page-main-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.page-main-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.page-main-content li {
    margin-bottom: 8px;
    font-size: 15px;
}

.page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.widget-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    color: white;
    border: none;
}

.widget-cta h3 {
    color: white;
}

.widget-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 24px;
}/* How Insurance Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.steps-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-light);
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.step-card:hover .step-number {
    color: var(--secondary-color);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Trust Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Title & Subtitle Utilities */
.section-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

/* Responsive steps and stats */
@media (max-width: 1024px) {
    .steps-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Animations */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Mobile responsive fixes */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    
    .hero {
        background-color: var(--bg-card);
        min-height: auto;
    }
    
    .hero-bg {
        position: relative;
        height: 250px;
    }
    
    .hero-content-wrapper {
        padding: 32px 0;
        justify-content: center;
    }
    
    .hero-card {
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        padding: 0;
        box-shadow: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .wizard-card {
        padding: 24px;
    }
}

/* --- Dedicated FAQ Page Styles --- */
.faq-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    margin-top: 40px;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 10;
}

.faq-search-wrapper {
    position: relative;
    background-color: var(--bg-card);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-normal);
}

.faq-search-wrapper:focus-within {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 75, 130, 0.15);
}

.faq-search-icon {
    color: var(--text-muted);
    flex-shrink: 0;
}

.faq-search-input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 15px;
    color: var(--text-dark);
}

.faq-search-input::placeholder {
    color: var(--text-muted);
}

.faq-category-nav {
    background-color: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
}

.faq-category-link {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-medium);
    border-left: 3px solid transparent;
    transition: var(--transition-normal);
    cursor: pointer;
}

.faq-category-link:hover {
    color: var(--secondary-color);
    background-color: var(--primary-light);
}

.faq-category-link.active {
    color: var(--secondary-color);
    background-color: var(--secondary-light);
    border-left-color: var(--secondary-color);
}

.faq-main {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.faq-group {
    scroll-margin-top: 100px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq-group.hidden {
    display: none;
}

.faq-group-header {
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 12px;
}

.faq-group-title {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.faq-group-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 4px;
}

.faq-group .faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 75, 130, 0.3);
}

.faq-item.active {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    gap: 16px;
    transition: var(--transition-fast);
}

.faq-header:hover {
    color: var(--secondary-color);
}

.faq-item.active .faq-header {
    color: var(--secondary-color);
}

.faq-question {
    flex-grow: 1;
}

.faq-icon-wrapper {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-item:hover .faq-icon-wrapper {
    background-color: var(--secondary-light);
    color: var(--secondary-color);
}

.faq-item.active .faq-icon-wrapper {
    background-color: var(--secondary-color);
    color: white;
    transform: rotate(135deg);
}

.faq-icon-wrapper svg {
    width: 14px;
    height: 14px;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
    padding: 0 24px 24px 24px;
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.6;
}

.faq-content-inner p {
    margin-bottom: 12px;
}

.faq-content-inner p:last-child {
    margin-bottom: 0;
}

.faq-no-results {
    background-color: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: none;
}

.faq-no-results-icon {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.faq-no-results h3 {
    margin-bottom: 8px;
}

.faq-no-results p {
    color: var(--text-muted);
}

/* Mobile responsive modifications for FAQ page */
@media (max-width: 900px) {
    .faq-page-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .faq-sidebar {
        position: relative;
        top: 0;
        gap: 16px;
    }
    
    .faq-category-nav {
        flex-direction: row;
        overflow-x: auto;
        padding: 4px;
        border-radius: var(--border-radius-md);
        scrollbar-width: none; /* Hide standard Firefox scrollbar */
    }
    
    .faq-category-nav::-webkit-scrollbar {
        display: none; /* Hide Chrome/Safari scrollbar */
    }
    
    .faq-category-link {
        padding: 10px 18px;
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: var(--border-radius-md);
    }
    
    .faq-category-link.active {
        border-left-color: transparent;
        border-bottom-color: var(--secondary-color);
    }
}

/* ==========================================
   Categorized Blogs & Resources Section
   ========================================== */
.blogs-category-sticky {
    position: sticky;
    top: 70px;
    z-index: 90;
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 14px 0;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.blogs-category-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 2px 4px;
}

@media (min-width: 901px) {
    .blogs-category-list {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
    }
}

.blogs-category-list::-webkit-scrollbar {
    display: none;
}

.blogs-category-pill {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 18px;
    font-size: 14px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 9999px;
    white-space: nowrap;
    border: 1px solid rgba(15, 76, 129, 0.1);
    transition: all var(--transition-fast);
}

.blogs-category-pill:hover {
    background-color: var(--secondary-light);
    color: var(--secondary-color);
    border-color: rgba(255, 75, 130, 0.2);
    transform: translateY(-1px);
}

.blogs-category-pill.active {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    box-shadow: 0 4px 10px rgba(255, 75, 130, 0.25);
}

/* Category Sections */
.blogs-section {
    padding: 40px 0;
    scroll-margin-top: 140px; /* Offset sticky header & sticky nav */
}

.blogs-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 16px;
}

.blogs-section-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-md);
}

.blogs-section-title {
    font-size: 26px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 800;
}

.blogs-section-count {
    background-color: var(--border-color);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    margin-left: 10px;
}

/* Category-specific styling values */
.category-healthcare { --cat-color: #0f4c81; --cat-gradient: linear-gradient(135deg, #0f4c81 0%, #3b82f6 100%); }
.category-employment { --cat-color: #e07a5f; --cat-gradient: linear-gradient(135deg, #d97706 0%, #f59e0b 100%); }
.category-freelancers { --cat-color: #3d5a80; --cat-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%); }
.category-students { --cat-color: #81b29a; --cat-gradient: linear-gradient(135deg, #0284c7 0%, #06b6d4 100%); }
.category-essential { --cat-color: #98c1d9; --cat-gradient: linear-gradient(135deg, #db2777 0%, #ec4899 100%); }
.category-relocation { --cat-color: #f2cc8f; --cat-gradient: linear-gradient(135deg, #16a34a 0%, #10b981 100%); }
.category-taxes { --cat-color: #e07a5f; --cat-gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%); }
.category-pets { --cat-color: #f4a261; --cat-gradient: linear-gradient(135deg, #d946ef 0%, #a855f7 100%); }

.blogs-section.category-healthcare .blogs-section-icon { background: var(--cat-gradient); }
.blogs-section.category-employment .blogs-section-icon { background: var(--cat-gradient); }
.blogs-section.category-freelancers .blogs-section-icon { background: var(--cat-gradient); }
.blogs-section.category-students .blogs-section-icon { background: var(--cat-gradient); }
.blogs-section.category-essential .blogs-section-icon { background: var(--cat-gradient); }
.blogs-section.category-relocation .blogs-section-icon { background: var(--cat-gradient); }
.blogs-section.category-taxes .blogs-section-icon { background: var(--cat-gradient); }
.blogs-section.category-pets .blogs-section-icon { background: var(--cat-gradient); }

.blogs-section.category-healthcare .blogs-section-header { border-bottom-color: rgba(15, 76, 129, 0.2); }
.blogs-section.category-employment .blogs-section-header { border-bottom-color: rgba(217, 119, 6, 0.2); }
.blogs-section.category-freelancers .blogs-section-header { border-bottom-color: rgba(79, 70, 229, 0.2); }
.blogs-section.category-students .blogs-section-header { border-bottom-color: rgba(2, 132, 199, 0.2); }
.blogs-section.category-essential .blogs-section-header { border-bottom-color: rgba(219, 39, 119, 0.2); }
.blogs-section.category-relocation .blogs-section-header { border-bottom-color: rgba(22, 163, 74, 0.2); }
.blogs-section.category-taxes .blogs-section-header { border-bottom-color: rgba(37, 99, 118, 0.2); }
.blogs-section.category-pets .blogs-section-header { border-bottom-color: rgba(217, 70, 239, 0.2); }

/* Responsive visibility utilities */
.desktop-only {
    display: flex !important;
}
.mobile-only {
    display: none !important;
}

@media (max-width: 900px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}

/* Custom Mobile Filter Dropdown */
.blogs-mobile-filter-wrapper {
    position: relative;
    width: 100%;
}

.blogs-mobile-filter-btn {
    width: 100%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border: 1px solid rgba(15, 76, 129, 0.1);
    border-radius: var(--border-radius-md);
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.blogs-mobile-filter-btn:hover,
.blogs-mobile-filter-btn:focus {
    background-color: var(--secondary-light);
    color: var(--secondary-color);
    border-color: rgba(255, 75, 130, 0.2);
}

.blogs-mobile-filter-btn .btn-icon {
    display: flex;
    align-items: center;
    margin-right: 10px;
    color: inherit;
}

.blogs-mobile-filter-btn .btn-icon svg {
    display: block;
}

.blogs-mobile-filter-btn .btn-arrow {
    display: flex;
    align-items: center;
    transition: transform var(--transition-fast);
}

.blogs-mobile-filter-wrapper.open .btn-arrow {
    transform: rotate(180deg);
}

.blogs-mobile-filter-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    z-index: 95;
    overflow: hidden;
    animation: slideDownFade 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.blogs-mobile-filter-wrapper.open .blogs-mobile-filter-dropdown {
    display: flex;
}

.filter-option {
    padding: 14px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-medium);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-fast);
    text-align: left;
}

.filter-option:last-child {
    border-bottom: none;
}

.filter-option:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.filter-option.active {
    background-color: var(--secondary-light);
    color: var(--secondary-color);
    font-weight: 700;
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}