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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ea580c;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    margin: 2rem auto;
    display: block;
    text-align: center;
    max-width: 300px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(249, 115, 22, 0.4);
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin: 3rem 0 1.5rem 0;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #374151;
    margin: 2rem 0 0.75rem 0;
}

p {
    margin-bottom: 1rem;
    color: #4b5563;
    font-size: 1rem;
}

ul {
    list-style: none;
    margin: 1.5rem 0;
}

li {
    background: white;
    padding: 1rem 1.5rem;
    margin: 0.75rem 0;
    border-radius: 8px;
    border-left: 4px solid #f97316;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    margin-right: 0.75rem;
}

.steps {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
}

.step {
    background: #fef3c7;
    padding: 1.25rem;
    margin: 1rem 0;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    font-weight: 500;
}

.testimonials {
    background: linear-gradient(135deg, #fff7ed, #fed7aa);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.testimonial {
    background: white;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-style: italic;
    color: #475569;
    position: relative;
}

.testimonial::before {
    content: "\201C";
    font-size: 3rem;
    color: #f97316;
    position: absolute;
    top: -10px;
    left: 15px;
    line-height: 1;
}

.faq-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin: 2rem 0;
}

.merchant-section {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
    border: 2px solid #f59e0b;
}

.merchant-section p {
    color: #92400e;
    font-weight: 500;
}

footer {
    background: #1e293b;
    color: #94a3b8;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    text-align: center;
}

footer a {
    color: #fb923c;
    text-decoration: none;
}

footer a:hover {
    color: #fdba74;
    text-decoration: underline;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .cta-button {
        max-width: 100%;
        margin: 1.5rem 0;
    }
}
