.verycredit-contact-hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, #007DFF 0%, #0066CC 100%);
    text-align: center;
    color: white;
}

.verycredit-page-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.verycredit-page-subtitle {
    font-size: 20px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
}

.verycredit-contact-content {
    padding: 100px 0;
    background: var(--verycredit-bg-primary);
}

.verycredit-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.verycredit-contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--verycredit-text-primary);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.verycredit-contact-info > p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--verycredit-text-secondary);
    margin-bottom: 48px;
}

.verycredit-contact-item {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.verycredit-contact-icon {
    width: 64px;
    height: 64px;
    background: var(--verycredit-primary-ultra-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.verycredit-contact-icon-text {
    font-size: 32px;
    line-height: 1;
    display: block;
}

.verycredit-contact-details h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--verycredit-text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.verycredit-contact-details p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--verycredit-text-secondary);
}

.verycredit-contact-form-wrapper {
    background: var(--verycredit-bg-secondary);
    padding: 48px;
    border-radius: 24px;
    border: 1px solid var(--verycredit-border);
}

.verycredit-contact-form h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--verycredit-text-primary);
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.verycredit-form-group {
    margin-bottom: 24px;
}

.verycredit-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--verycredit-text-primary);
    margin-bottom: 8px;
}

.verycredit-form-group input,
.verycredit-form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--verycredit-border);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    color: var(--verycredit-text-primary);
    background: white;
    transition: all 0.3s ease;
}

.verycredit-form-group input:focus,
.verycredit-form-group textarea:focus {
    outline: none;
    border-color: var(--verycredit-primary);
    box-shadow: 0 0 0 3px rgba(0, 125, 255, 0.1);
}

.verycredit-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.verycredit-contact-faq {
    padding: 100px 0;
    background: var(--verycredit-bg-secondary);
}

.verycredit-faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 60px;
}

.verycredit-faq-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--verycredit-border);
    transition: all 0.3s ease;
}

.verycredit-faq-item:hover {
    border-color: var(--verycredit-primary);
    box-shadow: var(--verycredit-shadow-md);
}

.verycredit-faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--verycredit-text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.verycredit-faq-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--verycredit-text-secondary);
}

.verycredit-footer .verycredit-logo-text {
    color: white;
}

@media (max-width: 968px) {
    .verycredit-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .verycredit-contact-form-wrapper {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .verycredit-page-title {
        font-size: 42px;
    }

    .verycredit-contact-content {
        padding: 60px 0;
    }

    .verycredit-contact-info h2,
    .verycredit-contact-form h2 {
        font-size: 28px;
    }

    .verycredit-contact-faq {
        padding: 60px 0;
    }

    .verycredit-faq-item {
        padding: 24px;
    }
}

