.about-features {
    padding: 60px 0;
    background: #1a1a1a; /* Darker background for contrast */
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.feature-item {
    width: 25%; /* 4 items in a row */
    padding: 0 15px;
    margin-bottom: 0;
}

.feature-box {
    background: #222;
    padding: 30px 20px;
    border-left: 4px solid #4192E7;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border: 1px solid #333;
    border-left-width: 4px;
}

.feature-box:hover {
    background: #2a2a2a;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-color: #333;
    border-left-color: #4192E7;
}

.feature-box i {
    font-size: 32px;
    color: #4192E7;
    margin-bottom: 15px;
}

.feature-box span {
    color: #ccc;
    font-weight: bold;
    font-size: 15px;
}

/* Keep existing styles for other sections */
.about-values {
    padding: 40px 0;
    background: #111;
}

.value-item {
    float: left;
    width: 25%;
    text-align: center;
    padding: 0 15px;
}

.value-item .icon-box {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #1a1a1a;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #4192E7;
    border: 1px solid #333;
    transition: 0.3s;
}

.value-item:hover .icon-box {
    background: #4192E7;
    color: #fff;
    transform: rotate(360deg);
}

.value-item h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.value-item p {
    color: #999;
    font-size: 13px;
}

.about-history {
    padding: 60px 0;
    background: #1a1a1a;
    border-top: 1px solid #222;
}

.history-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.history-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #333;
    margin-left: -1px;
}

.history-item {
    position: relative;
    width: 50%;
    padding: 0 40px;
    margin-bottom: 40px;
}

.history-item:nth-child(odd) {
    float: left;
    text-align: right;
    clear: both;
}

.history-item:nth-child(even) {
    float: right;
    text-align: left;
    clear: both;
    margin-top: 40px;
}

.history-item::after {
    content: "";
    position: absolute;
    top: 0;
    width: 16px;
    height: 16px;
    background: #4192E7;
    border-radius: 50%;
    border: 4px solid #1a1a1a;
    z-index: 2;
}

.history-item:nth-child(odd)::after {
    right: -8px;
}

.history-item:nth-child(even)::after {
    left: -8px;
}

.history-year {
    font-size: 24px;
    color: #4192E7;
    font-weight: bold;
    margin-bottom: 10px;
}

.history-content h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
}

.history-content p {
    color: #999;
    font-size: 14px;
}

@media (max-width: 768px) {
    .about-features{ padding: 20px 0;}
    .feature-item { width: 50%; margin-bottom: 15px; padding: 0 5px; }
    .value-item { width: 50%; margin-bottom: 30px; }
    
    .history-timeline::before { left: 20px; }
    .history-item { width: 100%; padding-left: 50px; padding-right: 0; text-align: left !important; float: none !important; margin-top: 0 !important; }
    .history-item::after { left: 12px !important; }

    .feature-box i{margin-bottom: 5px;}
    .feature-box {
        background: #222;
        padding: 20px 10px;
        border-left: 4px solid #4192E7;
        transition: 0.3s;
        border-radius: 0 4px 4px 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        text-align: center;
        border: 1px solid #333;
        border-left-width: 4px;
    }
    .feature-box span{font-size: 14px; font-weight: 400; }

}