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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

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

/* Navigation Styles */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e7eb;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
    margin: 0 0.5rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover {
    background-color: #f3f4f6;
    color: #3b82f6;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #e5e7eb;
}

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

.dropdown-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.dropdown-link:last-child {
    border-bottom: none;
}

.dropdown-link:hover {
    background-color: #f8fafc;
    color: #3b82f6;
    padding-left: 1.25rem;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #374151;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Menu Animation */
.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Main Content */
.main-content {
    margin-top: 0;
}

.section {
    padding: 3rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.main-content-area {
    min-width: 0;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-text {
    font-size: 1.125rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Immediate Impact Timeline */
.immediate-impact {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.timeline-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.timeline-header {
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.timeline-header i {
    color: #3b82f6;
    font-size: 2rem;
}

.timeline-header h3 {
    color: #1f2937;
    font-weight: 600;
    margin: 0;
}

.timeline-content {
    padding: 2rem;
}

.timeline-content p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.timeline-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
}

.timeline-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.important-note, .strategy-tip, .warning-box, .action-item {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.important-note {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    border-left: 4px solid #ef4444;
}

.strategy-tip {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-left: 4px solid #3b82f6;
}

.warning-box {
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    border-left: 4px solid #ef4444;
}

.action-item {
    background: linear-gradient(135deg, #f0f9ff, #dbeafe);
    border-left: 4px solid #0ea5e9;
}

.important-note i, .strategy-tip i, .warning-box i, .action-item i {
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.important-note i, .warning-box i {
    color: #ef4444;
}

.strategy-tip i {
    color: #3b82f6;
}

.action-item i {
    color: #0ea5e9;
}

/* COBRA Overview */
.cobra-overview {
    margin-top: 2rem;
}

.cobra-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
}

.cobra-header {
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.cobra-header i {
    color: #3b82f6;
    font-size: 2rem;
}

.cobra-header h3 {
    color: #1f2937;
    font-weight: 600;
    margin: 0;
}

.cobra-content {
    padding: 2rem;
}

.cobra-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cobra-details {
    display: grid;
    gap: 0.75rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.detail-row strong:first-child {
    color: #1f2937;
}

.detail-row strong:last-child, .detail-row span:last-child {
    color: #3b82f6;
    font-weight: 600;
}

/* COBRA Costs */
.cobra-costs {
    margin-top: 2rem;
}

.cobra-costs h3 {
    color: #1f2937;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cost-structure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cost-component {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.cost-icon {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.cost-details h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cost-details p {
    color: #6b7280;
    font-size: 0.875rem;
}

.cost-plus {
    color: #3b82f6;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Cost Examples */
.cost-examples {
    margin-top: 2rem;
}

.cost-examples h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
}

.example-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.example-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.example-card h5 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.cost-breakdown {
    display: grid;
    gap: 0.5rem;
}

.cost-line {
    display: flex;
    justify-content: space-between;
    color: #4b5563;
    padding: 0.25rem 0;
}

.cost-line span {
    font-weight: 600;
}

.total-cost {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    border-top: 2px solid #3b82f6;
    font-weight: 700;
    color: #1f2937;
}

.total-cost span {
    color: #3b82f6;
    font-size: 1.125rem;
}

/* Pros and Cons */
.cobra-pros-cons {
    margin-top: 2rem;
}

.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.pros-card, .cons-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.pros-card {
    border-left: 4px solid #10b981;
}

.cons-card {
    border-left: 4px solid #ef4444;
}

.pros-card h4, .cons-card h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pros-card h4 {
    color: #059669;
}

.cons-card h4 {
    color: #dc2626;
}

.pros-card h4 i {
    color: #10b981;
}

.cons-card h4 i {
    color: #ef4444;
}

.pros-card ul, .cons-card ul {
    list-style: none;
    padding: 0;
}

.pros-card li, .cons-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
}

.pros-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.cons-card li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

/* Marketplace Overview */
.marketplace-overview {
    margin-top: 2rem;
}

.marketplace-intro {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

.marketplace-intro h3 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
}

.marketplace-intro p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.sep-details {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.sep-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.timeline-marker {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-text {
    color: #4b5563;
    font-size: 0.875rem;
    font-weight: 500;
}

.timeline-arrow {
    color: #3b82f6;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Plan Tiers */
.plan-tiers {
    margin-top: 2rem;
}

.plan-tiers h3 {
    color: #1f2937;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.tier-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tier-header {
    padding: 1rem;
    text-align: center;
    color: white;
    font-weight: 600;
}

.tier-card.bronze .tier-header {
    background: linear-gradient(135deg, #a16207, #d97706);
}

.tier-card.silver .tier-header {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
}

.tier-card.gold .tier-header {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.tier-card.platinum .tier-header {
    background: linear-gradient(135deg, #1f2937, #374151);
}

.tier-header h4 {
    margin: 0;
    font-size: 1.125rem;
}

.coverage-percent {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

.tier-details {
    padding: 1.5rem;
}

.tier-details p {
    margin-bottom: 0.75rem;
    color: #4b5563;
    font-size: 0.875rem;
}

.tier-details p:last-child {
    margin-bottom: 0;
}

.tier-details strong {
    color: #1f2937;
}

/* Subsidies Section */
.subsidies-section {
    margin-top: 2rem;
}

.subsidies-section h3 {
    color: #1f2937;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.subsidy-info {
    display: grid;
    gap: 1.5rem;
}

.subsidy-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    border-left: 4px solid #10b981;
}

.subsidy-card h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.subsidy-card h4 i {
    color: #10b981;
}

.subsidy-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.income-examples {
    margin-top: 1rem;
}

.income-examples h5 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
}

.income-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
}

.income-item {
    background: #f0f9ff;
    padding: 0.75rem;
    border-radius: 6px;
    text-align: center;
    color: #1e40af;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Comparison Scenarios */
.comparison-scenarios {
    margin-top: 2rem;
}

.scenario-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
}

.scenario-header {
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scenario-header h3 {
    color: #1f2937;
    font-weight: 600;
    margin: 0;
}

.scenario-location {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    padding: 2rem;
    align-items: center;
}

.option-column {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.option-column h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.cost-details {
    display: grid;
    gap: 0.5rem;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4b5563;
    font-size: 0.875rem;
    padding: 0.25rem 0;
}

.cost-row strong {
    color: #1f2937;
    font-weight: 600;
}

.savings {
    color: #10b981 !important;
    font-weight: 700;
}

.vs-divider {
    color: #6b7280;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
}

.scenario-recommendation {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #92400e;
    font-weight: 500;
}

.scenario-recommendation i {
    color: #f59e0b;
    font-size: 1.25rem;
}

/* Alternative Options */
.alternative-options {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.option-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.option-header {
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.option-header i {
    color: #3b82f6;
    font-size: 1.75rem;
}

.option-header h3 {
    color: #1f2937;
    font-weight: 600;
    margin: 0;
}

.option-content {
    padding: 2rem;
}

.option-content p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pros-cons-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1rem 0;
}

.pros-mini, .cons-mini {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
}

.pros-mini {
    border-left: 4px solid #10b981;
}

.cons-mini {
    border-left: 4px solid #ef4444;
}

.pros-mini h5 {
    color: #059669;
    margin-bottom: 0.75rem;
}

.cons-mini h5 {
    color: #dc2626;
    margin-bottom: 0.75rem;
}

.pros-mini ul, .cons-mini ul {
    list-style: none;
    padding: 0;
}

.pros-mini li, .cons-mini li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    color: #4b5563;
    font-size: 0.875rem;
}

.pros-mini li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.cons-mini li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

/* Freelancer Options */
.freelancer-options {
    display: grid;
    gap: 1rem;
    margin: 1rem 0;
}

.freelancer-org {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #0ea5e9;
}

.freelancer-org h5 {
    color: #0c4a6e;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.freelancer-org p {
    color: #075985;
    font-size: 0.875rem;
    margin: 0;
}

/* Decision Framework */
.decision-framework {
    margin-top: 2rem;
}

.decision-step {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.step-number {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-content {
    padding: 2rem;
}

.step-content h3 {
    color: #1f2937;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.assessment-questions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.question-category {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.question-category h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
}

.question-category ul {
    list-style: none;
    padding: 0;
}

.question-category li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.875rem;
}

/* Cost Calculator Framework */
.cost-calculator-framework {
    margin-top: 1rem;
}

.cost-calculator-framework h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cost-formula {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.formula-part {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
    flex: 1;
    min-width: 120px;
}

.formula-part strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.25rem;
}

.formula-part span {
    color: #6b7280;
    font-size: 0.875rem;
}

.formula-plus, .formula-equals {
    color: #3b82f6;
    font-size: 1.25rem;
    font-weight: 700;
}

.formula-result {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #3b82f6;
    flex: 1;
    min-width: 150px;
}

.formula-result strong {
    color: #1e40af;
    font-weight: 700;
}

.cost-tips {
    margin-top: 1rem;
}

.cost-tips h5 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.cost-tips ul {
    list-style: none;
    padding: 0;
}

.cost-tips li {
    padding: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
    color: #4b5563;
    font-size: 0.875rem;
}

.cost-tips li::before {
    content: '💡';
    position: absolute;
    left: 0;
}

/* Network Checklist */
.network-checklist h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
}

.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.checklist-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.checklist-item i {
    color: #3b82f6;
    font-size: 1.25rem;
}

.checklist-item span {
    color: #4b5563;
    font-weight: 500;
}

/* Decision Scenarios */
.decision-scenarios {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.scenario-recommendation {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.scenario-recommendation h4 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1rem;
}

.scenario-recommendation ul {
    list-style: none;
    padding: 0;
}

.scenario-recommendation li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    color: #4b5563;
    font-size: 0.875rem;
}

.scenario-recommendation li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

/* Action Timeline */
.action-timeline {
    margin-top: 2rem;
}

.timeline-phase {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    overflow: hidden;
}

.phase-header {
    background: linear-gradient(135deg, #f8fafc, #e5e7eb);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.phase-header i {
    color: #3b82f6;
    font-size: 1.75rem;
}

.phase-header h3 {
    color: #1f2937;
    font-weight: 600;
    margin: 0;
}

.phase-tasks {
    padding: 2rem;
}

.task-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.task-item i {
    color: #10b981;
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.task-content strong {
    color: #1f2937;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.task-content p {
    color: #4b5563;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Mistakes Grid */
.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.mistake-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    border-left: 4px solid #ef4444;
}

.mistake-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.mistake-header i {
    color: #ef4444;
    font-size: 1.5rem;
}

.mistake-header h3 {
    color: #1f2937;
    font-weight: 600;
    margin: 0;
}

.mistake-content p {
    margin-bottom: 0.75rem;
    color: #4b5563;
    line-height: 1.5;
    font-size: 0.875rem;
}

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

.mistake-content strong {
    color: #1f2937;
}

/* Tools CTA */
.tools-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 3rem 0;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button.primary {
    background: white;
    color: #3b82f6;
}

.cta-button.primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.sidebar-widget.highlight {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border-left: 4px solid #f59e0b;
}

.tool-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tool-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.tool-link:hover {
    background: #e5e7eb;
    transform: translateX(5px);
}

.tool-link i {
    color: #3b82f6;
    font-size: 1.25rem;
    width: 20px;
}

.tool-link strong {
    color: #1f2937;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.tool-link span {
    color: #6b7280;
    font-size: 0.875rem;
}

.article-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-link {
    display: block;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    line-height: 1.4;
}

.article-link:hover {
    background: #e5e7eb;
    transform: translateX(5px);
    color: #3b82f6;
}

/* FAQ Section */
.faq-section {
    background: #f8fafc;
    padding: 4rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    color: #6b7280;
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #f3f4f6;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.6;
    color: #9ca3af;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #3b82f6;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        margin-top: 0.5rem;
        border-radius: 8px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar {
        position: static;
        order: -1;
    }

    .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .pros-cons-mini {
        grid-template-columns: 1fr;
    }

    .example-grid {
        grid-template-columns: 1fr;
    }

    .tier-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vs-divider {
        display: none;
    }

    .assessment-questions {
        grid-template-columns: 1fr;
    }

    .cost-formula {
        flex-direction: column;
    }

    .formula-plus, .formula-equals {
        transform: rotate(90deg);
    }

    .sep-timeline {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-arrow {
        transform: rotate(90deg);
    }

    .mistakes-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section {
        padding: 2rem 0;
    }

    .sidebar-widget {
        padding: 1.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .cobra-content {
        padding: 1.5rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .phase-tasks {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1rem;
    }

    .tier-grid {
        grid-template-columns: 1fr;
    }

    .cost-structure {
        flex-direction: column;
    }

    .cost-plus {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .sidebar,
    .tools-cta,
    .footer {
        display: none;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .hero {
        background: none;
        color: #1f2937;
    }

    body {
        font-size: 12px;
        line-height: 1.4;
    }
}