/* Hero Section */
        .how-it-works-hero {
            background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
            padding: 80px 24px;
            text-align: center;
            color: white;
        }
        
        .how-it-works-hero h1 {
            font-size: 48px;
            margin-bottom: 16px;
            color: white;
        }
        
        .how-it-works-hero p {
            font-size: 18px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Section Styles */
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 24px;
        }
        
        .section-title {
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 16px;
        }
        
        .section-subtitle {
            text-align: center;
            color: #64748b;
            margin-bottom: 48px;
            font-size: 18px;
        }
        
        /* Campaign Type Cards */
        .campaign-types-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 60px;
        }
        
        .campaign-type-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .campaign-type-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
        }
        
        .card-header {
            padding: 32px;
            text-align: center;
            color: white;
        }
        
        .card-header.simple {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
        }
        
        .card-header.milestone {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        }
        
        .card-header.donation {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }
        
        .card-header i {
            font-size: 48px;
            margin-bottom: 16px;
        }
        
        .card-header h3 {
            font-size: 24px;
            color: white;
            margin: 0;
        }
        
        .card-body {
            padding: 24px;
        }
        
        .card-body p {
            color: #475569;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .feature-list li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list li i {
            width: 24px;
            color: #10b981;
        }
        
        .btn-outline-card {
            display: block;
            text-align: center;
            padding: 12px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 16px;
            transition: all 0.2s;
        }
        
        .btn-outline-card.simple {
            border: 2px solid #6366f1;
            color: #6366f1;
        }
        
        .btn-outline-card.simple:hover {
            background: #6366f1;
            color: white;
        }
        
        .btn-outline-card.milestone {
            border: 2px solid #f59e0b;
            color: #f59e0b;
        }
        
        .btn-outline-card.milestone:hover {
            background: #f59e0b;
            color: white;
        }
        
        .btn-outline-card.donation {
            border: 2px solid #10b981;
            color: #10b981;
        }
        
        .btn-outline-card.donation:hover {
            background: #10b981;
            color: white;
        }
        
        /* Detailed Sections */
        .detailed-section {
            background: #f8fafc;
            border-radius: 32px;
            margin-bottom: 48px;
            overflow: hidden;
        }
        
        .detailed-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            padding: 48px;
        }
        
        .detailed-content.reverse {
            direction: rtl;
        }
        
        .detailed-content.reverse > * {
            direction: ltr;
        }
        
        .detailed-text h2 {
            font-size: 28px;
            margin-bottom: 16px;
        }
        
        .detailed-text h3 {
            font-size: 20px;
            margin: 24px 0 12px;
            color: #1e293b;
        }
        
        .steps {
            list-style: none;
            padding: 0;
        }
        
        .steps li {
            display: flex;
            gap: 16px;
            margin-bottom: 24px;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background: #6366f1;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .step-number.green {
            background: #10b981;
        }
        
        .step-number.orange {
            background: #f59e0b;
        }
        
        .step-content h4 {
            margin: 0 0 4px;
            font-size: 16px;
        }
        
        .step-content p {
            margin: 0;
            color: #64748b;
            font-size: 14px;
        }
        
        .detailed-icon {
            text-align: center;
        }
        
        .detailed-icon i {
            font-size: 120px;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 16px;
            overflow: hidden;
        }
        
        .comparison-table th,
        .comparison-table td {
            padding: 16px;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .comparison-table th {
            background: #f1f5f9;
            font-weight: 600;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .check { color: #10b981; }
        .x { color: #ef4444; }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            padding: 60px 24px;
            text-align: center;
            color: white;
            border-radius: 32px;
            margin-top: 40px;
        }
        
        .cta-section h2 {
            font-size: 32px;
            margin-bottom: 16px;
            color: white;
        }
        
        .cta-section p {
            margin-bottom: 32px;
            opacity: 0.9;
        }
        
        .btn-white {
            background: white;
            color: #6366f1;
            padding: 14px 32px;
            border-radius: 40px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        
        @media (max-width: 1024px) {
            .campaign-types-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        
        @media (max-width: 768px) {
            .how-it-works-hero h1 { font-size: 32px; }
            .section-title { font-size: 28px; }
            .detailed-content { 
                grid-template-columns: 1fr; 
                padding: 32px;
                gap: 24px;
            }
            .detailed-content.reverse { direction: ltr; }
            .detailed-icon i { font-size: 80px; }
            .comparison-table { font-size: 12px; }
            .comparison-table th, .comparison-table td { padding: 10px 8px; }
        }
