            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            color: #2d3748;
            background: #f7fafc;
        }
        
        /* Google AdSense Containers */
        .ad-container {
            margin: 30px auto;
            text-align: center;
            min-height: 90px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ad-top {
            margin-top: 0;
            margin-bottom: 20px;
        }

        .ad-bottom {
            margin-top: 40px;
            margin-bottom: 40px;
        }

        .ad-sidebar {
            max-width: 336px;
            margin: 30px auto;
        }

        .ad-placeholder {
            background: #f7fafc;
            border: 2px dashed #cbd5e0;
            padding: 30px;
            border-radius: 8px;
            color: #718096;
            font-size: 0.9em;
            font-weight: 600;
            width: 100%;
        }

        /* Hide ad placeholders in production (when you add real ads) */
        .ad-placeholder { display: none; }

        @media (max-width: 768px) {
            .ad-container {
                margin: 20px auto;
            }

            .ad-sidebar {
                max-width: 100%;
                padding: 0 10px;
            }
        }

        /* Support Banner */
        .support-banner {
            background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
            color: white;
            padding: 18px 20px;
            text-align: center;
            font-size: 1.05em;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
            position: relative;
            overflow: hidden;
        }

        .support-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        .support-banner a {
            color: white;
            text-decoration: none;
            margin-left: 12px;
            font-weight: 700;
            background: rgba(255, 255, 255, 0.2);
            padding: 8px 20px;
            border-radius: 25px;
            border: 2px solid white;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .support-banner a:hover {
            background: white;
            color: #16a34a;
            transform: scale(1.05);
        }
        
        /* Header */
        .header {
            background: white;
            border-bottom: 1px solid #e2e8f0;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
        }
        
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            cursor: pointer;
        }
        
        .logo-img {
            width: 45px;
            height: 45px;
        }
        
        .logo-text {
            font-size: 1.8em;
            font-weight: 700;
            color: #0c5f94;
            letter-spacing: -0.5px;
            transition: color 0.2s;
        }
        
        .logo-container:hover .logo-text {
            color: #094a75;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
            align-items: center;
        }
        
        .nav-links a {
            color: #4a5568;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95em;
            transition: color 0.2s;
        }
        
        .nav-links a:hover {
            color: #0c5f94;
        }
        
        .btn-provider {
            background: #0c5f94;
            color: white !important;
            padding: 10px 20px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.2s;
        }
        
        .btn-provider:hover {
            background: #094a75;
            color: white;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgba(12, 95, 148, 0.95) 0%, rgba(9, 74, 117, 0.95) 100%), 
                        url('/images/hero.jpg') center/cover;
            color: white;
            padding: 80px 20px;
            text-align: center;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hero h1 {
            font-size: 3em;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.3em;
            margin-bottom: 40px;
            opacity: 0.95;
            font-weight: 400;
        }
        
        /* Search Box */
        .search-container {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .search-box {
            display: flex;
            gap: 10px;
        }
        
        .search-input {
            flex: 1;
            padding: 16px 20px;
            font-size: 1em;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            transition: border-color 0.2s;
        }
        
        .search-input:focus {
            outline: none;
            border-color: #0c5f94;
        }
        
        .search-btn {
            padding: 16px 40px;
            background: #0c5f94;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        
        .search-btn:hover {
            background: #094a75;
        }
        
        /* Stats Bar */
        .stats-bar {
            background: white;
            border-bottom: 1px solid #e2e8f0;
            padding: 30px 20px;
        }
        
        .stats-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            text-align: center;
        }
        
        .stat-item {
            padding: 20px;
        }
        
        .stat-number {
            font-size: 2.5em;
            font-weight: 700;
            color: #0c5f94;
            margin-bottom: 8px;
        }
        
        .stat-label {
            color: #718096;
            font-size: 1em;
        }
        
        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        .section-header {
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 2em;
            color: #2d3748;
            margin-bottom: 10px;
            font-weight: 700;
        }
        
        .section-subtitle {
            color: #718096;
            font-size: 1.1em;
        }
        
        /* Provider Grid */
        .provider-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 24px;
        }
        
        .provider-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s;
            cursor: pointer;
            position: relative;
        }

        .provider-card:hover {
            border-color: #0c5f94;
            box-shadow: 0 4px 12px rgba(12, 95, 148, 0.1);
            transform: translateY(-2px);
        }

        /* Featured Provider Cards */
        .featured-card {
            border: 2px solid #f59e0b;
            background: linear-gradient(to bottom, #fffbeb 0%, white 100%);
        }

        .featured-card:hover {
            border-color: #d97706;
            box-shadow: 0 6px 20px rgba(245, 158, 11, 0.2);
        }

        .featured-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.8em;
            font-weight: 700;
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
            z-index: 10;
        }

        .provider-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
            margin-right: 15px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
        }

        .provider-header-content {
            display: flex;
            align-items: center;
            flex: 1;
        }

        /* Locked content styling */
        .detail-locked {
            opacity: 0.6;
        }

        .locked-text {
            font-style: italic;
            color: #718096;
            font-size: 0.9em;
        }
        
        .provider-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 16px;
        }
        
        .provider-name {
            font-size: 1.25em;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 4px;
        }
        
        .provider-rating {
            display: flex;
            align-items: center;
            gap: 6px;
            background: #fef3c7;
            padding: 6px 12px;
            border-radius: 6px;
            font-weight: 600;
            color: #92400e;
            font-size: 0.9em;
        }
        
        .provider-location {
            color: #718096;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.95em;
        }
        
        .provider-details {
            padding-top: 16px;
            border-top: 1px solid #f7fafc;
        }
        
        .detail-row {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #4a5568;
            margin-bottom: 10px;
            font-size: 0.9em;
        }
        
        .detail-icon {
            color: #0c5f94;
            font-weight: bold;
        }
        
        .provider-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 16px;
        }
        
        .btn {
            padding: 10px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.9em;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            border: none;
        }
        
        .btn-primary {
            background: #0c5f94;
            color: white;
        }
        
        .btn-primary:hover {
            background: #094a75;
        }
        
        .btn-secondary {
            background: white;
            color: #0c5f94;
            border: 1px solid #0c5f94;
        }
        
        .btn-secondary:hover {
            background: #f7fafc;
        }
        
        /* Support Mission Section */
        .support-mission-section {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 80px 20px;
            margin-top: 60px;
        }

        .support-mission-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .support-mission-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .support-mission-header h2 {
            font-size: 2.5em;
            color: #92400e;
            margin-bottom: 15px;
        }

        .support-mission-subtitle {
            font-size: 1.2em;
            color: #78350f;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
        }

        .support-mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .mission-card {
            background: white;
            padding: 35px 25px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(146, 64, 14, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(146, 64, 14, 0.15);
        }

        .mission-icon {
            font-size: 3em;
            margin-bottom: 15px;
        }

        .mission-card h3 {
            color: #92400e;
            font-size: 1.4em;
            margin-bottom: 12px;
        }

        .mission-card p {
            color: #78350f;
            line-height: 1.7;
            font-size: 1em;
        }

        .support-mission-cta {
            text-align: center;
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(146, 64, 14, 0.15);
        }

        .support-mission-pitch {
            font-size: 1.15em;
            color: #78350f;
            margin-bottom: 25px;
            font-weight: 500;
        }

        .support-mission-btn {
            background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
            color: white;
            border: none;
            padding: 18px 45px;
            font-size: 1.2em;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(22, 163, 74, 0.3);
            transition: all 0.3s ease;
        }

        .support-mission-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 30px rgba(22, 163, 74, 0.4);
        }

        .support-mission-note {
            margin-top: 15px;
            font-size: 0.85em;
            color: #92400e;
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .support-mission-section {
                padding: 50px 20px;
            }

            .support-mission-header h2 {
                font-size: 1.8em;
            }

            .support-mission-subtitle {
                font-size: 1em;
            }

            .support-mission-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .support-mission-btn {
                width: 100%;
                padding: 16px 30px;
                font-size: 1.1em;
            }
        }

        /* How It Works Section */
        .how-it-works {
            background: white;
            padding: 60px 20px;
            margin-top: 60px;
        }
        
        .how-it-works-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }
        
        .step {
            text-align: center;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: #0c5f94;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        .step-title {
            font-size: 1.2em;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2d3748;
        }
        
        .step-description {
            color: #718096;
            line-height: 1.6;
        }
        
        /* Footer */
        .footer {
            background: #2d3748;
            color: white;
            padding: 40px 20px 20px;
            margin-top: 60px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.2s;
        }
        
        .footer-links a:hover {
            opacity: 1;
        }
        
        .footer-bottom {
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.7;
            font-size: 0.9em;
        }
        
        #results {
            margin-top: 40px;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2em;
            }
            
            .search-box {
                flex-direction: column;
            }
            
            .stats-content {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .provider-grid {
                grid-template-columns: 1fr;
            }
            
            .nav-links {
                display: none;
            }
        }

.special-notes {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f7fafc;
    font-size: 0.85em;
}

/* Floating Support Button */
.floating-support-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-support-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px rgba(22, 163, 74, 0.5);
    animation: none;
}

.floating-support-btn .heart-icon {
    font-size: 1.2em;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.floating-support-btn .support-text {
    font-size: 0.95em;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(22, 163, 74, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(22, 163, 74, 0.6);
    }
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    10%, 30% {
        transform: scale(1.1);
    }
    20%, 40% {
        transform: scale(0.95);
    }
}

/* Mobile adjustments for floating button */
@media (max-width: 768px) {
    .floating-support-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9em;
    }

    .floating-support-btn .support-text {
        display: none;
    }

    .floating-support-btn .heart-icon {
        font-size: 1.5em;
        margin: 0;
    }
}

/* Support Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s;
    max-height: 85vh;
    overflow-y: auto;
}

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

.modal-close {
    color: #718096;
    float: right;
    font-size: 32px;
    font-weight: bold;
    line-height: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #2d3748;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #0c5f94;
    font-size: 1.8em;
}

.support-info {
    margin-bottom: 25px;
}

.support-info p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #4a5568;
}

.support-info ul {
    margin: 15px 0;
    padding-left: 25px;
}

.support-info li {
    margin-bottom: 8px;
    color: #4a5568;
    line-height: 1.6;
}

.disclaimer-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 20px;
    margin: 25px 0;
    border-radius: 6px;
}

.disclaimer-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #92400e;
    font-size: 1.2em;
}

.disclaimer-box ul {
    margin: 0;
    padding-left: 20px;
}

.disclaimer-box li {
    margin-bottom: 10px;
    color: #92400e;
    line-height: 1.6;
}

.disclaimer-box a {
    color: #0c5f94;
    text-decoration: underline;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-support-confirm {
    flex: 1;
    background: #0c5f94;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1em;
    transition: background 0.2s;
    text-decoration: none;
    display: block;
}

.btn-support-confirm:hover {
    background: #094a75;
}

.btn-support-cancel {
    flex: 0.5;
    background: white;
    color: #4a5568;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    font-size: 1em;
    transition: all 0.2s;
}

.btn-support-cancel:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 25px;
        width: 95%;
    }

    .modal-actions {
        flex-direction: column;
    }

    .btn-support-cancel {
        flex: 1;
    }
}
