.trusted-section,
.privacy-section {
    padding: 0 0 80px;
}

.trusted-content {
    text-align: center;
}

.trusted-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 50px;
    padding: 20px 0 30px;
}

.trusted-card-title {
    font-weight: 700;
    color: var(--black);
}

.trusted-card {
    max-width: 352px;
}

.trusted-card img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.office-info {
    margin-top: 20px;
}

.office-info-card {
    display: flex;
    align-items: center;
    gap: 6px;
}

.office-info-card-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.office-icon {
    display: inline-flex;
}

.office-icon img {
    width: 20px;
    height: 20px;
}

.office-info-card a {
    color: var(--gray);
}

.office-info-card a:hover {
    color: var(--parrot);
}

.office-label {
    min-width: 45px;
    font-weight: 600;
    color: var(--black);
}

.privacy-section strong {
    color: var(--black);
    font-weight: 700;
}

@media (max-width: 991px) {
    .trusted-section,
    .privacy-section {
        padding: 0 0 60px;
    }
}

@media (max-width: 768px) {
    .trusted-section,
    .privacy-section {
        padding: 0 0 40px;
    }
    .trusted-wrapper {
        gap: 20px;
        padding: 15px 0 10px;
    }
    .trusted-card img {
        width: 90px;
        height: 90px;
    }
    .office-info {
        margin-top: 12px;
    }
}