
.front-page-trust {
    display: flex;
    align-items: center;
    height: 410px;
    box-sizing: border-box;
    margin-top: 54px;
    padding: 32px 24px;
    background-color: #f4f8f7;
    border: 1px solid #d5e5e3;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgb(38 50 71 / 8%);
}

.front-page-trust__container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: clamp(28px, 5vw, 72px);
    width: 100%;
    max-width: 1180px;
    margin-inline: auto;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    text-align: center;
}

.trust-item__circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    flex: 0 0 220px;
    color: #ffffff;
    background-image: linear-gradient(
        135deg,
        #007a74 0%,
        #43b3ae 100%
    );
    border: 8px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 16px 36px rgb(0 122 116 / 22%);
}

.trust-item__icon {
    width: 88px;
    height: 88px;
    fill: none;
    stroke: currentcolor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-item__title {
    margin: 18px 0 8px;
    color: #263247;
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    line-height: 1.3;
}

.trust-item__description {
    max-width: 320px;
    margin: 0;
    color: #5c6678;
    font-size: 0.95rem;
    line-height: 1.6;
}


