.hero-trust-bar-adcbe7dd {
    padding: 80px 20px 40px;
    text-align: center;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #032750; /* Fallback baseline */
}

.hero-trust-bar-adcbe7dd .hero-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.hero-trust-bar-adcbe7dd .hero-headline {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-trust-bar-adcbe7dd .hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-trust-bar-adcbe7dd .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-trust-bar-adcbe7dd .btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-trust-bar-adcbe7dd .btn-primary {
    color: #1a1a1a;
}

.hero-trust-bar-adcbe7dd .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.hero-trust-bar-adcbe7dd .btn-ghost {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-trust-bar-adcbe7dd .btn-ghost:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.hero-trust-bar-adcbe7dd .hero-trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-trust-bar-adcbe7dd .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-trust-bar-adcbe7dd .trust-item-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-trust-bar-adcbe7dd .trust-item-icon svg {
    width: 24px;
    height: 24px;
}

.hero-trust-bar-adcbe7dd .trust-item-text {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .hero-trust-bar-adcbe7dd {
        background-color: #032750; /* Ensure mobile explicit background */
    }
    .hero-trust-bar-adcbe7dd .hero-headline {
        font-size: 2.5rem;
    }
    .hero-trust-bar-adcbe7dd .hero-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-trust-bar-adcbe7dd {
        background-color: #032750; /* Ensure mobile explicit background */
        padding: 60px 15px 30px;
    }
    .hero-trust-bar-adcbe7dd .hero-trust-bar {
        grid-template-columns: 1fr;
    }
    .hero-trust-bar-adcbe7dd .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-trust-bar-adcbe7dd .btn {
        width: 100%;
    }
}
