.creditloop-fee-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.creditloop-fee-overview-card {
    background: var(--white-color);
    padding: 3rem 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-fee-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.creditloop-fee-icon {
    width: 100px;
    height: 100px;
    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: 2.5rem;
    color: var(--white-color);
}

.creditloop-fee-overview-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.creditloop-fee-percentage {
    font-family: 'Roboto Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.creditloop-fee-overview-card p {
    color: var(--medium-color);
    line-height: 1.6;
}

.creditloop-section-alt {
    background: linear-gradient(135deg, #F5F7FA 0%, #E8F0F8 100%);
}

.creditloop-text-center {
    text-align: center;
}

.creditloop-fee-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.creditloop-fee-detail-card {
    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-fee-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.creditloop-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.creditloop-detail-header i {
    font-size: 2rem;
    color: var(--primary-color);
}

.creditloop-detail-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.creditloop-fee-detail-card p {
    color: var(--medium-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.creditloop-detail-example {
    padding: 1rem;
    background: rgba(0, 102, 204, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 0.25rem;
    font-size: 0.9375rem;
}

.creditloop-detail-example strong {
    color: var(--dark-color);
}

.creditloop-calculation-example {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.creditloop-example-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-color);
}

.creditloop-example-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark-color);
}

.creditloop-calculation-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.creditloop-calculation-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--light-color);
    border-radius: 0.5rem;
}

.creditloop-step-label {
    color: var(--medium-color);
    font-weight: 500;
}

.creditloop-step-value {
    font-family: 'Roboto Mono', monospace;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
}

.creditloop-calculation-total {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin-top: 1rem;
}

.creditloop-calculation-total .creditloop-step-label,
.creditloop-calculation-total .creditloop-step-value {
    color: var(--white-color);
}

.creditloop-example-summary {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0, 102, 204, 0.1);
    border-left: 4px solid var(--primary-color);
    border-radius: 0.25rem;
}

.creditloop-example-summary p {
    color: var(--dark-color);
    line-height: 1.8;
    margin: 0;
}

.creditloop-repayment-policy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.creditloop-policy-card {
    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-policy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.creditloop-policy-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-policy-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.creditloop-policy-card p {
    color: var(--medium-color);
    line-height: 1.6;
}

.creditloop-fee-note {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.creditloop-fee-note h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.creditloop-fee-note h3 i {
    color: var(--primary-color);
}

.creditloop-note-list {
    list-style: none;
    padding-left: 0;
}

.creditloop-note-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--medium-color);
    line-height: 1.8;
}

.creditloop-note-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .creditloop-fee-overview,
    .creditloop-fee-details,
    .creditloop-repayment-policy {
        grid-template-columns: 1fr;
    }

    .creditloop-calculation-step {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}
