/* ===== Trust & Verification Page ===== */
.trust-wrap {
    max-width: 1000px;   /* controls content width */
    margin-right: auto;  /* prevents centering */
}

/* Hero */
.trust-hero {
    border-bottom: 2px solid #eee;
    margin-bottom: 50px;
}
.trust-hero-icon i {
    font-size: 34px;
    color: #17BEBB;
    margin-bottom: 16px;
}
.trust-hero h1 {
    font-size: 34px;
    color: #165e7b;
    margin-bottom: 14px;
}
.trust-hero p {
    font-size: 18px;
    color: #444;
    line-height: 1.7;
}

/* Pillar grid */
.trust-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 56px;
}
.trust-pillar {
    background: #f4f9fb;
    border: 1px solid #cde8f0;
    border-top: 4px solid #17BEBB;
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
}
.trust-pillar i {
    font-size: 32px;
    color: #165e7b;
    margin-bottom: 12px;
}
.trust-pillar h3 {
    font-size: 17px;
    margin: 0 0 10px!important;
    color: #165e7b;
    line-height: 1.6 !important;
}
.trust-pillar p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Section headings */
.trust-section {
    margin-bottom: 50px;
}
.trust-section h2 {
    font-size: 24px;
    color: #165e7b;
    border-left: 5px solid #17BEBB;
    padding-left: 14px;
    margin-bottom: 18px;
}
.trust-section p {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 14px;
}

/* How it works steps */
.trust-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 24px 0;
    position: relative;
}
.trust-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 30px;
    position: relative;
}
.trust-step:last-child { padding-bottom: 0; }
.trust-step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #165e7b;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.trust-step-line {
    position: absolute;
    left: 20px;
    top: 42px;
    bottom: 0;
    width: 2px;
    background: #cde8f0;
}
.trust-step:last-child .trust-step-line { display: none; }
.trust-step-body h3 {
    font-size: 17px;
    margin: 8px 0 6px !important;
    line-height: 1.6 !important;
    color: #165e7b;
}
.trust-step-body p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Highlight box */
.trust-highlight {
    background: linear-gradient(135deg, #e8f7f8 0%, #f0fbff 100%);
    border: 1px solid #9dd6e0;
    border-radius: 10px;
    padding: 28px 30px;
    margin: 30px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.trust-highlight i {
    font-size: 28px;
    color: #17BEBB;
    flex-shrink: 0;
    margin-top: 2px;
}
.trust-highlight h3 {
    font-size: 17px;
    margin: 0 0 8px !important;
    color: #165e7b;
    line-height: 1.6 !important;
}
.trust-highlight p {
    font-size: 15px;
    color: #444;
    line-height: 1.65;
    margin: 0;
}

/* FAQ */
.trust-faq {
    border-top: 1px solid #e0e0e0;
    margin-top: 8px;
}
.trust-faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
}
.trust-faq-item h3 {
    font-size: 16px;
    color: #165e7b;
    margin: 0 0 8px !important;
    line-height: 1.6 !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.trust-faq-item h3 i {
    font-size: 13px;
    color: #999;
    transition: transform 0.2s;
}
.trust-faq-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* CTA */
.trust-cta {
    background: #165e7b;
    border-radius: 10px;
    padding: 40px 36px;
    text-align: center;
    color: #fff;
    margin-top: 50px;
}
.trust-cta h2 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #fff;
}
.trust-cta p {
    font-size: 16px;
    opacity: 0.88;
    margin-bottom: 24px;
    line-height: 1.6;
}
.trust-cta .btn-cta {
    display: inline-block;
    background: #17BEBB;
    color: #fff;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
    margin: 0 8px 8px;
}
.trust-cta .btn-cta:hover { background: #13a8a5; color: #fff; }
.trust-cta .btn-cta-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 13px 36px;
    border-radius: 8px;
    font-size: 17px;
    border: 2px solid rgba(255,255,255,0.5);
    text-decoration: none;
    transition: border-color 0.2s;
    margin: 0 8px 8px;
}
.trust-cta .btn-cta-outline:hover { border-color: #fff; color: #fff; }

@media (max-width: 768px) {
    .trust-wrap {
        margin: 0;
        max-width: 100%;
    }
}
@media (max-width: 700px) {
    .trust-pillars { grid-template-columns: 1fr; }
    .trust-hero h1 { font-size: 26px; }
    .trust-hero p { font-size: 16px; }
    .trust-highlight { flex-direction: column; gap: 12px; }
    .trust-cta { padding: 30px 20px; }
    
}
@media (max-width: 900px) {
    .trust-pillars { grid-template-columns: 1fr 1fr; }
}