.creditloop-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.creditloop-contact-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-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.creditloop-contact-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-contact-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.creditloop-contact-card p {
    color: var(--medium-color);
    margin-bottom: 0.5rem;
}

.creditloop-contact-value {
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 0.5rem;
}

.creditloop-contact-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.creditloop-contact-value a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.creditloop-section-alt {
    background: linear-gradient(135deg, #F5F7FA 0%, #E8F0F8 100%);
}

.creditloop-contact-form-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.creditloop-form-wrapper {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.creditloop-contact-form {
    margin-top: 2rem;
}

.creditloop-form-group {
    margin-bottom: 1.5rem;
}

.creditloop-form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.creditloop-form-group input,
.creditloop-form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #E0E0E0;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white-color);
}

.creditloop-form-group input:focus,
.creditloop-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.creditloop-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.creditloop-contact-info {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.creditloop-contact-reasons {
    list-style: none;
    margin-top: 2rem;
}

.creditloop-contact-reasons li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--medium-color);
}

.creditloop-contact-reasons i {
    color: var(--success-color);
    font-size: 1.125rem;
}

.creditloop-contact-note {
    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-contact-note p {
    color: var(--dark-color);
    line-height: 1.6;
    margin: 0;
}

.creditloop-faq-preview {
    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;
}

.creditloop-text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .creditloop-contact-grid {
        grid-template-columns: 1fr;
    }

    .creditloop-contact-form-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
