.trust-wrapper {
    max-width: 1100px;
    margin: 60px 0 0 0;
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.trust-text-col {
    flex: 1.2;
}

.trust-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #000;
}

.trust-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.trust-desc strong {
    font-weight: 700;
    color: #000;
}

.signature-block {
    margin-top: 40px;
}

.founder-label {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.signature-img {
    height: 50px;
    width: auto;
    display: block;
    opacity: 0.8;
}

.trust-img-col {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-img-col.mobile-view {
    display: none;
}

.trust-photo {
    width: 100%;
    flex: 1;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@media (max-width: 1024px){
    .trust-wrapper {
        display: flex;
        flex-direction: row;
        width: 100%;
        margin: 0;
        gap: 20px;
        padding: 0 20px;
    }

    .trust-title {
        font-size: 24px;
    }

    .trust-img-col {
        display: none;
    }

    .trust-img-col.mobile-view {
        display: block;
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
        box-sizing: border-box;
        padding: 0 20px;
    }

    .trust-photo {
        width: 100%;
        height: auto;
        display: block;
    }

    .signature-block {
        margin-top: 20px;
        text-align: center;
    }

    .founder-label {
        font-size: 14px;
        color: #555;
        margin-bottom: 10px;
    }

    .signature-img {
        height: 50px;
        width: auto;
        display: block;
        opacity: 0.8;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }
}

@media (max-width: 650px){
    .trust-wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0;
    }

    .trust-title {
        font-size: 24px;
    }
}