.verycredit-about-hero {
    padding: 140px 20px 80px;
    background: var(--verycredit-bg-gradient-alt);
    text-align: center;
    color: white;
}

.verycredit-page-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.verycredit-page-subtitle {
    font-size: 24px;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.verycredit-about-intro {
    padding: 100px 0;
    background: white;
}

.verycredit-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.verycredit-intro-text .verycredit-section-title {
    text-align: left;
    margin-bottom: 30px;
}

.verycredit-intro-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: var(--verycredit-text-secondary);
    margin-bottom: 24px;
}

.verycredit-intro-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--verycredit-shadow-xl);
}

.verycredit-about-vision {
    padding: 100px 0;
    background: var(--verycredit-bg-secondary);
}

.verycredit-vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.verycredit-vision-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--verycredit-text-secondary);
    margin-bottom: 24px;
}

.verycredit-about-values {
    padding: 100px 0;
    background: white;
}

.verycredit-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.verycredit-value-card {
    background: var(--verycredit-bg-secondary);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.verycredit-value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--verycredit-shadow-lg);
    background: white;
}

.verycredit-value-icon {
    font-size: 64px;
    line-height: 1;
    margin: 0 auto 24px;
    display: block;
}

.verycredit-value-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--verycredit-text-primary);
}

.verycredit-value-card p {
    color: var(--verycredit-text-secondary);
    line-height: 1.6;
}

.verycredit-about-technology {
    padding: 100px 0;
    background: var(--verycredit-bg-secondary);
}

.verycredit-technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.verycredit-technology-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--verycredit-shadow-xl);
}

.verycredit-technology-text .verycredit-section-title {
    text-align: left;
    margin-bottom: 30px;
}

.verycredit-technology-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: var(--verycredit-text-secondary);
    margin-bottom: 24px;
}

.verycredit-technology-list {
    list-style: none;
    margin-top: 30px;
}

.verycredit-technology-list li {
    font-size: 18px;
    color: var(--verycredit-text-primary);
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.verycredit-technology-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--verycredit-primary);
    font-weight: bold;
    font-size: 20px;
}

.verycredit-about-commitment {
    padding: 100px 0;
    background: white;
}

.verycredit-commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.verycredit-commitment-box {
    background: var(--verycredit-bg-secondary);
    padding: 50px;
    border-radius: 20px;
    margin-top: 40px;
    border-left: 4px solid var(--verycredit-primary);
}

.verycredit-commitment-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--verycredit-text-secondary);
    margin-bottom: 24px;
}

.verycredit-footer .verycredit-logo-text {
    color: white;
}

@media (max-width: 968px) {
    .verycredit-intro-content,
    .verycredit-technology-content {
        grid-template-columns: 1fr;
    }

    .verycredit-intro-text .verycredit-section-title,
    .verycredit-technology-text .verycredit-section-title {
        text-align: center;
    }

    .verycredit-page-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .verycredit-page-title {
        font-size: 36px;
    }

    .verycredit-page-subtitle {
        font-size: 20px;
    }

    .verycredit-values-grid {
        grid-template-columns: 1fr;
    }
}

