.creditloop-process-overview {
    max-width: 900px;
    margin: 0 auto;
}

.creditloop-process-step-large {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.creditloop-process-step-large:nth-child(even) {
    flex-direction: row-reverse;
}

.creditloop-step-number {
    font-family: 'Roboto Mono', monospace;
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    min-width: 100px;
}

.creditloop-step-content {
    flex: 1;
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.creditloop-step-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.creditloop-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.creditloop-step-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.creditloop-step-content p {
    color: var(--medium-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.creditloop-step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.creditloop-step-list li {
    color: var(--medium-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.creditloop-step-list i {
    color: var(--success-color);
}

.creditloop-section-alt {
    background: linear-gradient(135deg, #F5F7FA 0%, #E8F0F8 100%);
}

.creditloop-text-center {
    text-align: center;
}

.creditloop-detailed-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.creditloop-detailed-step {
    background: var(--white-color);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.creditloop-detailed-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.creditloop-detailed-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.creditloop-detailed-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.creditloop-detailed-step h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
}

.creditloop-detailed-step p {
    color: var(--medium-color);
    line-height: 1.6;
}

.creditloop-process-cta {
    text-align: center;
    margin-top: 3rem;
}

.creditloop-withdrawal-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.creditloop-guide-item {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.creditloop-guide-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.creditloop-guide-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white-color);
}

.creditloop-guide-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.creditloop-guide-item p {
    color: var(--medium-color);
    line-height: 1.6;
}

.creditloop-guide-cta {
    text-align: center;
    margin-top: 3rem;
}

.creditloop-calculation-example {
    max-width: 700px;
    margin: 3rem auto 0;
}

.creditloop-example-card {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.creditloop-example-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.creditloop-example-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.creditloop-example-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 0.5rem;
}

.creditloop-example-item span {
    color: var(--medium-color);
}

.creditloop-example-item strong {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
}

.creditloop-example-total {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-top: 1rem;
}

.creditloop-example-total span,
.creditloop-example-total strong {
    color: var(--white-color);
}

.creditloop-example-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(0, 102, 204, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 0.25rem;
    color: var(--dark-color);
    font-size: 0.9375rem;
}

.creditloop-faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.creditloop-faq-item {
    background: var(--white-color);
    border: 1px solid #E0E0E0;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.creditloop-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.creditloop-faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.creditloop-faq-question h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
}

.creditloop-faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.creditloop-faq-item.creditloop-active .creditloop-faq-question i {
    transform: rotate(180deg);
}

.creditloop-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.creditloop-faq-item.creditloop-active .creditloop-faq-answer {
    max-height: 500px;
}

.creditloop-faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--medium-color);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .creditloop-process-step-large {
        flex-direction: column !important;
    }

    .creditloop-step-number {
        font-size: 3rem;
        min-width: auto;
    }

    .creditloop-detailed-steps,
    .creditloop-withdrawal-guide {
        grid-template-columns: 1fr;
    }
}
