/* trust section */
.trust-section {
    background-color: #f5f5f7;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.trust-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.4;
    text-align: center;
    color: #2e2e2e;
    letter-spacing: -0.84px;
    margin: 0;
}

.trust-title .highlight {
    color: #006dfe;
}

.trust-cards {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.trust-card {
    width: 277px;
    height: 277px;
    box-sizing: border-box;
    border-radius: 30px;
    padding: 3px; /* This creates the border thickness */
    background: var(--gradation);
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.16);
}

.trust-card-content {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    border-radius: 26px; /* outer radius - padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    box-sizing: border-box;
}

.trust-card-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-card-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trust-card-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 26px;
    color: #535353;
    letter-spacing: -0.26px;
    line-height: 1.4;
    margin: 0;
}

.trust-card-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #101010;
    letter-spacing: -0.3px;
    line-height: 1.4;
    margin: 0;
}
