.section {
    padding: 70px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #777;
    margin-bottom: 30px;
}

/* Trust Cards */
.trust-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.trust-box:hover {
    transform: translateY(-5px);
}

/* CTA */
.section-cta {
    background: linear-gradient(135deg, #ff6a00, #ff9a00);
    color: #fff;
    padding: 80px 20px;
    border-radius: 12px;
}

.btn-main {
    display: inline-block;
    padding: 12px 30px;
    background: #ff6a00;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 15px;
}

.btn-main:hover {
    background: #e85d00;
}