.credibility-section {
    background: #f8f9fa;
    padding: 2rem 0;
    text-align: center;
    position: relative;
}

.credibility-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.credibility-content h3 {
    color: #5a6c7d;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: 'Fredoka', cursive;
    font-weight: 500;
}

.credibility-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.badge-item {
    flex: 0 1 300px;
    padding: 1rem;
    transition: transform 0.3s ease;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.badge-item:hover {
    transform: translateY(-5px);
}

.credibility-badge {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.badge-item:hover .credibility-badge {
    opacity: 1;
}

.credibility-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.badge-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-family: 'Fredoka', cursive;
    font-size: 1.2rem;
}

.badge-item p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .credibility-badges {
        gap: 1.5rem;
    }
    
    .badge-item {
        flex: 0 1 100%;
        max-width: 300px;
    }
    
    .credibility-content h3 {
        font-size: 1.5rem;
    }
}