:root {
    --brand-orange: #e67e22;
    --brand-light-orange: #fff1e6;
    --text-muted: #6c757d;
    --border-color: #eee;
}

.olmia-trust-badges-widget {
    width: 100%;
}

.olmia-help-top {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.olmia-help-text {
    font-weight: 700;
    color: #053A62;
    line-height: 1.4;
}

.olmia-help-link {
    color: var(--brand-orange);
    font-weight: 700;
    text-decoration: none;
    line-height: 1.4;
}

.olmia-help-link:hover {
    text-decoration: underline;
}

.olmia-trust-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.olmia-trust-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.olmia-trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.olmia-icon {
    width: 54px;
    height: 54px;
    background-color: var(--brand-light-orange);
    color: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.olmia-content h6 {
    margin: 0 0 4px;
    font-weight: 700;
    color: var(--brand-orange);
    font-size: 16px;
}

.olmia-content p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .olmia-trust-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .olmia-trust-wrapper {
        grid-template-columns: 1fr;
    }

    .olmia-help-top {
        margin-bottom: 24px;
    }
}
