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

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.container {
    width: 100%;
    max-width: 900px;
}


/* Header */
.header {
    text-align: center;
    margin-bottom: 60px;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #D1FAE5;
    border-radius: 50%;
    margin-bottom: 24px;
    color: #059669;
}

.header h2 {
    font-size: 24px;
    color: #111827;
    margin-bottom: 16px;
    font-weight: 500;
}

.subtitle {
    font-size: 20px;
    color: #6B7280;
}

/* Steps */
.steps {
    margin-bottom: 48px;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    border: 1px dashed rgba(0, 0, 0, 0.568);
    padding: 24px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
border: 1px solid rgba(0, 0, 0, 0.568);
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.step-content {
    flex: 1;
}

.step-content h2 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 8px;
    font-weight: 400;
}

.step-content p {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.6;
}

/* Footer */
.footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #E5E7EB;
    text-align: center;
}

.footer-text {
    color: #6B7280;
    font-size: 16px;
    margin-bottom: 24px;
}

.buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #4F46E5;
    color: white;
}

.btn-primary:hover {
    background-color: #4338CA;
}

.btn-secondary {
    background-color: #E5E7EB;
    color: #1F2937;
}

.btn-secondary:hover {
    background-color: #D1D5DB;
}

/* Responsive */
@media (max-width: 768px) {
    .card {
        padding: 32px 24px;
    }

    .header h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }

    .step {
        gap: 16px;
    }

    .step-content h2 {
        font-size: 20px;
    }

    .step-content p {
        font-size: 16px;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
