/* Trust Section Styles */
.trust-section {
    height: 689px;
    background-color: #F5F5F5;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-container {
    width: 100%;
    max-width: 1440px;
    padding: 0 45px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    height: 100%;
}

/* Left Column - Content */
.trust-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 630px;
}

.trust-title {
    font-family: 'Cal Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 120%;
    margin: 0;
    display: block;
    white-space: nowrap;
}

.title-black {
    color: #000000;
}

.title-primary {
    color: #E62D5B;
}

.trust-description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    margin: 0;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.trust-point {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 60px;
    margin-bottom: 24px;
}

.trust-point:last-child {
    margin-bottom: 0;
}

.trust-point-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    /* Glass effect */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 100px;
    padding: 8px;
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.trust-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.35);
}

.point-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 60px;
}

.point-title {
    font-family: 'Cal Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: #000000;
    margin: 0 0 4px 0;
}

.point-description {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #000000;
    margin: 0;
}

/* Right Column - Image */
.trust-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.trust-main-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .trust-section {
        height: auto;
        min-height: 689px;
    }

    .trust-container {
        padding: 40px 30px;
        gap: 40px;
        grid-template-columns: 1fr;
        text-align: left;
    }

    .trust-content {
        max-width: 100%;
        margin: 0 auto;
    }

    .trust-image {
        order: -1;
        max-height: 400px;
    }

    .trust-main-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .trust-section {
        height: auto;
    }

    .trust-content {
        order: 1;
        gap: 15px;
    }

    .trust-image {
        order: 2
    }

    .trust-container {
        padding: 40px 20px;
        gap: 30px;
    }

    .trust-title {
        display: inline-flex;
        font-size: 32px;
        line-height: 120%;
        white-space: normal;
    }

    .trust-description {
        font-size: 16px;
    }

    .trust-point {
        height: auto;
        margin-bottom: 20px;
        gap: 16px;
    }

    .trust-point-icon {
        width: 50px;
        height: 50px;
    }

    .trust-icon {
        width: 50px;
        height: 50px;
        padding: 6px;
        border-radius: 10px;
    }

    .point-content {
        height: auto;
    }

    .point-title {
        font-size: 16px;
    }

    .point-description {
        font-size: 14px;
    }

    .trust-image {
        margin-top: 10px;
        max-height: 342px;
    }

    .trust-main-image {
        max-height: 400px;
    }
}

@media (max-width: 440px) {
    .trust-container {
        padding: 30px 25px;
    }

    .trust-title {
        font-size: 28px;
        white-space: normal;
    }

    .trust-description {
        font-size: 15px;
    }

    .trust-point {
        margin-bottom: 16px;
        gap: 12px;
    }

    .trust-point-icon {
        width: 45px;
        height: 45px;
    }

    .trust-icon {
        width: 45px;
        height: 45px;
        padding: 5px;
        border-radius: 8px;
    }

    .point-title {
        font-size: 15px;
    }

    .point-description {
        font-size: 13px;
    }

    .trust-image {
        margin-top: 10px;
        max-height: 342px;
    }

    .trust-main-image {
        max-height: 400px;
    }
}