.why-invest-section {
    background: var(--white);
}

.why-invest-box {
    height: 100%;
    padding: 0;
    text-align: left;
}

.why-invest-box .icon-wrapper {
    margin-bottom: 27px;
}

.why-invest-box .icon-wrapper svg {
    width: 68px;
    height: 68px;
    display: block;
    
    @media (max-width: 991px) {
        width: 56px;
        height: 56px;
    }
    
    @media (max-width: 576px) {
        width: 48px;
        height: 48px;
    }
}

.why-invest-box .box-title {
    color: var(--primary-color);
    font-family: var(--font-type2);
    font-size: 30px;
    font-weight: 400;
    line-height: 34px;
    margin-bottom: 19px;
    display: flex;
    align-items: center;
    
    @media (max-width: 1200px) {
        font-size: 22px;
        line-height: 28px;
        height: auto;
    }
    
    @media (max-width: 991px) {
        font-size: 24px;
        line-height: 28px;
    }
    
    @media (max-width: 768px) {
        font-size: 22px;
        line-height: 26px;
    }
    
    @media (max-width: 576px) {
        font-size: 20px;
        line-height: 24px;
    }
}

.why-invest-box .box-description {
    color: var(--text-default-color);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    margin: 0;
    
    @media (max-width: 991px) {
        font-size: 16px;
        line-height: 26px;
    }
    
    @media (max-width: 576px) {
        font-size: 14px;
        line-height: 24px;
    }
}

/* RTL Support */
[dir="rtl"] .why-invest-box {
    text-align: right;
}

[dir="rtl"] .why-invest-box .box-title,
[dir="rtl"] .why-invest-box .box-description {
    text-align: right;
    
    
}


/* Responsive adjustments */
@media (max-width: 576px) {
    .why-invest-box {
        margin-bottom: 40px;
    }
    
    .why-invest-box:last-child {
        margin-bottom: 0;
    }
}