.registration-guide-section {
    background: var(--theme-section-bg);
    border-top: 3px solid var(--theme-section-border-color);
    padding: 40px 0;
    margin: 30px 0;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.registration-guide-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.registration-guide-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-top: 0;
}

.registration-guide-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.registration-guide-image {
    flex: 0 0 400px;
}

.registration-guide-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.registration-guide-text {
    flex: 1;
    min-width: 300px;
}

.registration-guide-text p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-gray-light);
    margin: 0;
}

.registration-steps {
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 25px 40px;
}

.steps-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.registration-steps .step-item {
    flex: 1 1 calc(50% - 20px);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--theme-color-style4);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--theme-color-accent);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--theme-color-accent);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0 0 10px 0;
}

.step-content p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-gray-medium);
    margin: 0;
}

.step-content li {
    list-style: none;
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .registration-guide-content {
        flex-direction: column;
        text-align: center;
    }
    .registration-guide-image {
        flex: none;
        width: 100%;
        max-width: 400px;
    }
    .registration-steps {
        gap: 25px;
    }
    .registration-steps .step-item {
        flex: 1 1 100%;
    }
    .step-item {
        padding: 20px;
    }
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}