#Trusted_Section {
    background-image: url('../PHOTOS/country/trusted_bg1.webp');
    height: 25rem;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Trusted_content {
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* optional dark overlay for readability */
    padding: 2rem;
    /* border-radius: 1rem; */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.Trusted_content h1{
    text-align: center;
    font-family: var(--heading_fonts);
    font-size: 2.5rem;
}

.Trusted_content p{
    text-align: center;
    padding: 0 3rem;
    font-size: 1rem;
    font-family: var(--normal_fonts);
}

.Trusted_content a {
    margin: 2rem 0;
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border-radius: 0.5rem;
    background: var(--btn_bg);
    color: white;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--normal_fonts);
    transition: transform 0.3s ease, background 0.2s linear;
}

.Trusted_content a:hover {
    background: black;
    transform: scale(1.03);
}

@media screen and (max-width:448px) 
{
    .Trusted_content h1{
        font-size: 2rem;
    }
    .Trusted_content p{
        padding: 0;
    }
}