/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Fall Color Palette */
    --autumn-red: #C8102E;
    --autumn-orange: #FF6B35;
    --autumn-gold: #F7931E;
    --autumn-yellow: #FDB913;
    --autumn-brown: #8B4513;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --light-gray: #F3F4F6;
    --gray: #6B7280;
    --dark-gray: #374151;
    --black: #111827;
    
    /* Fonts */
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

html {
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: var(--font-body);
    color: var(--black);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Dark and Sticky on All Devices */
.header {
    background: #1e3a5f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    width: 100%;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

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

.nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #14b8a6;
}

.btn-nav {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF9F5 100%);
    padding: 80px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 800;
    color: #10b981;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subheadline {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.badge i {
    font-size: 32px;
    color: #14b8a6;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: #10b981;
}

.badge-label {
    font-size: 13px;
    color: var(--gray);
}

/* Form Container */
.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--gray);
    margin-bottom: 32px;
}

/* Form Steps */
.form-step {
    display: none;
}

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

.form-step label {
    display: block;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
    font-size: 16px;
}

/* Radio Options */
.radio-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.radio-option label i {
    font-size: 20px;
    color: #14b8a6;
}

.radio-option input[type="radio"]:checked + label {
    border-color: #14b8a6;
    background: linear-gradient(135deg, #FFF5F0, #FFFAF5);
}

.radio-option label:hover {
    border-color: var(--autumn-gold);
    background: #FFFAF5;
}

/* Slider */
.slider-container {
    margin: 24px 0;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #10b981 0%, #10b981 20%, #E5E7EB 20%, #E5E7EB 100%);
    outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    background: #E5E7EB;
    border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10b981;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(200, 16, 46, 0.4);
    margin-top: -8px;
}

input[type="range"]::-moz-range-track {
    width: 100%;
    height: 8px;
    background: #E5E7EB;
    border-radius: 5px;
}

input[type="range"]::-moz-range-progress {
    height: 8px;
    background: #14b8a6;
    border-radius: 5px;
}

input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #10b981;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(200, 16, 46, 0.4);
    border: none;
}

.slider-value {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #10b981;
    margin-top: 20px;
}

/* Form Inputs */
input[type="text"],
input[type="email"],
input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 16px;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    outline: none;
    border-color: #14b8a6;
}

/* Buttons */
.btn-back {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-back:hover {
    color: #14b8a6;
}

.btn-continue,
.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-continue:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.3);
}

.form-disclaimer {
    font-size: 12px;
    color: var(--gray);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: var(--black);
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 60px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.step-card .step-number {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
    margin: 0 auto 24px;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.step-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 15px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 40px auto 24px;
    background: linear-gradient(135deg, #FFF5F0, #FFFAF5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 48px;
    color: #14b8a6;
}

.step h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.step p {
    color: var(--gray);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 36px;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-benefits {
    list-style: none;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.service-benefits i {
    color: #14b8a6;
    font-size: 16px;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: var(--off-white);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-intro {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.benefit {
    display: flex;
    gap: 20px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFF5F0, #FFFAF5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 28px;
    color: #14b8a6;
}

.benefit h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.benefit p {
    color: var(--gray);
    line-height: 1.6;
}

.why-us-right img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF5F0, #FFFAF5);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.story-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.story-content {
    padding: 40px;
}

.story-quote {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 16px;
    line-height: 1.4;
}

.story-text {
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-author {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 12px;
}

.story-result {
    font-size: 16px;
    color: var(--dark-gray);
}

.story-result strong {
    color: #14b8a6;
    font-size: 20px;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 32px;
}

.btn-cta-large {
    display: inline-block;
    padding: 20px 48px;
    background: var(--white);
    color: #10b981;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.cta-trust {
    margin-top: 24px;
    color: var(--white);
    font-size: 16px;
}

.cta-trust i {
    margin: 0 8px;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #14b8a6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-us-content {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-headline {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .nav {
        display: none;
    }
    
    .form-container {
        padding: 24px;
    }
}

/* Category Page Styles */

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    font-size: 14px;
    color: var(--gray);
}

.breadcrumb a {
    color: #14b8a6;
    text-decoration: none;
}

.breadcrumb i {
    margin: 0 8px;
    font-size: 12px;
}

/* Category Hero */
.category-hero {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFF9F5 100%);
    padding: 60px 0 80px;
}

.category-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.category-hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 20px;
}

.category-hero-subtitle {
    font-size: 20px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 32px;
}

.category-benefits-quick {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.quick-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--dark-gray);
}

.quick-benefit i {
    color: #14b8a6;
    font-size: 20px;
}

.category-cta {
    margin-top: 32px;
}

.cta-note {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--gray);
}

.cta-note i {
    color: #14b8a6;
    margin-right: 8px;
}

/* Calculator Widget */
.calculator-widget {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 100px;
}

.calculator-widget h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.calculator-widget h3 i {
    color: #14b8a6;
    margin-right: 8px;
}

.calculator-widget > p {
    color: var(--gray);
    margin-bottom: 32px;
}

.calculator-widget label {
    display: block;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 16px;
}

.calculator-results {
    background: var(--light-gray);
    padding: 24px;
    border-radius: 12px;
    margin-top: 32px;
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
}

.calc-result-row:last-child {
    border-bottom: none;
}

.calc-result-row.highlight {
    background: linear-gradient(135deg, #FFF5F0, #FFFAF5);
    padding: 16px;
    border-radius: 8px;
    margin: 8px 0;
    border: 2px solid #14b8a6;
}

.calc-result-row strong {
    font-size: 20px;
    color: var(--black);
}

.calc-result-row strong.savings {
    color: #14b8a6;
    font-size: 24px;
}

.btn-calculator {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #10b981, #14b8a6);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-calculator:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 16, 46, 0.3);
}

/* Category Info Section */
.category-info {
    padding: 80px 0;
    background: var(--white);
}

.category-info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.category-info h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 24px;
}

.category-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 32px 0 16px;
}

.category-info p {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.debt-types-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.debt-types-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--dark-gray);
}

.debt-types-list i {
    color: #14b8a6;
}

.info-card {
    background: linear-gradient(135deg, #FFF5F0, #FFFAF5);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 24px;
    border-left: 4px solid #14b8a6;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #10b981;
    margin: 0 0 12px 0;
}

.info-card h3 i {
    margin-right: 8px;
}

.info-card p {
    font-size: 16px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.comparison-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-col {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.comparison-col h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comparison-col.without h3 {
    color: var(--dark-gray);
}

.comparison-col.without h3 i {
    color: #EF4444;
}

.comparison-col.with {
    border: 3px solid #14b8a6;
}

.comparison-col.with h3 {
    color: #10b981;
}

.comparison-col.with h3 i {
    color: #14b8a6;
}

.comparison-col ul {
    list-style: none;
    margin-bottom: 32px;
}

.comparison-col ul li {
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
    color: var(--dark-gray);
}

.comparison-example {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.8;
}

.comparison-example strong {
    display: block;
    margin-bottom: 8px;
    color: var(--black);
}

.comparison-example .bad {
    color: #EF4444;
    font-weight: 600;
}

.comparison-example .good {
    color: #14b8a6;
    font-weight: 600;
}

/* Eligibility Section */
.eligibility-section {
    padding: 80px 0;
    background: var(--white);
}

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

.eligibility-col h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.eligibility-col h3 i {
    font-size: 28px;
}

.eligibility-list {
    list-style: none;
}

.eligibility-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    padding: 16px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FFF5F0, #FFFAF5);
    border-radius: 8px;
    font-size: 16px;
    color: var(--dark-gray);
}

.eligibility-list li i {
    margin-top: 4px;
    font-size: 18px;
}

.eligibility-list:not(.not-qualify) li i {
    color: #14b8a6;
}

.eligibility-list.not-qualify li {
    background: #FEF2F2;
}

.eligibility-list.not-qualify li i {
    color: #EF4444;
}

.eligibility-cta {
    text-align: center;
    background: linear-gradient(135deg, #FFF5F0, #FFFAF5);
    padding: 48px;
    border-radius: 16px;
}

.eligibility-cta p {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question i {
    color: #14b8a6;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 32px 24px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Success Story Single */
.success-story-single {
    padding: 80px 0;
    background: var(--white);
    margin-bottom: 0;
}

.story-single {
    padding: 80px 0;
    background: var(--white);
    margin-bottom: 60px;
}

.story-single-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-quote-mark {
    font-size: 120px;
    line-height: 1;
    color: #14b8a6;
    opacity: 0.3;
    font-family: Georgia, serif;
    margin-bottom: -40px;
}

.story-single-left h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: #10b981;
    line-height: 1.3;
    margin-bottom: 24px;
}

.story-text {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 32px;
}

.story-author {
    margin-bottom: 32px;
}

.story-author strong {
    font-size: 18px;
    color: var(--black);
}

.story-author p {
    color: var(--gray);
    font-style: italic;
    margin-top: 4px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #FFF5F0, #FFFAF5);
    border-radius: 12px;
}

.stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #10b981;
    margin-bottom: 8px;
}

.stat span {
    font-size: 14px;
    color: var(--gray);
}

.story-single-right img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 16px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--dark-gray);
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: #14b8a6;
}

/* Responsive */
@media (max-width: 968px) {
    .category-hero-content {
        grid-template-columns: 1fr;
    }
    
    .calculator-widget {
        position: static;
    }
    
    .category-info-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .eligibility-grid {
        grid-template-columns: 1fr;
    }
    
    .story-single-content {
        grid-template-columns: 1fr;
    }
    
    .category-benefits-quick {
        grid-template-columns: 1fr;
    }
    
    .debt-types-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .category-hero h1 {
        font-size: 32px;
    }
    
    .calculator-widget {
        padding: 24px;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
}

