/*** about ***/

.static-page {
    padding: 60px 20px;
    background: #f4f6f9;
    direction: rtl;
    font-family: system-ui, -apple-system, sans-serif;
    color: #1f2937;
    min-height: 100vh;
}

.page-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.eyebrow {
    background: #e0e7ff;
    color: #3730a3;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.page-header h1 {
    margin: 0 0 16px 0;
    font-size: 32px;
    color: #111827;
}

.page-header p {
    font-size: 16px;
    color: #4b5563;
    margin: 0;
}

.content-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #e5e7eb;
}

.prose h2 {
    font-size: 22px;
    color: #111827;
    margin: 32px 0 16px 0;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 12px;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 16px;
    text-align: justify;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.feature-list li {
    position: relative;
    padding-right: 24px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: #4b5563;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #059669;
    font-weight: bold;
}

.contact-box {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    padding: 20px;
    border-radius: 12px;
    margin-top: 32px;
    text-align: center;
}

.contact-box h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: #0f172a;
}

/*** how it works ***/

.timeline-container {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    transition: transform 0.2s;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-color: #e0e7ff;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #4f46e5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.step-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #111827;
}

.step-content p {
    margin: 0;
    line-height: 1.7;
    color: #4b5563;
    font-size: 15px;
    text-align: justify;
}

.text-center {
    text-align: center;
    margin-top: 32px;
}

.action-button {
    display: inline-block;
    background: #059669;
    color: #fff;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    transition: background 0.2s;
}

.action-button:hover {
    background: #047857;
}

@media (max-width: 600px) {
    .step-card {
        flex-direction: column;
    }
}