/* Section and Header */
.deka-features-section {
    width: 100%;
    margin: 60px 0;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.deka-features-header {
    text-align: center;
    margin-bottom: 50px;
}

.deka-features-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #f9a826; /* Accent color matching midocar style usually */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.deka-features-main-title {
    color: #111827 !important;
    margin: 0 !important;
    line-height: 1.2 !important;
}

/* Wrapper Grid */
.deka-features-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Feature Box */
.deka-feature-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    background: transparent;
}

/* Icon */
.deka-feature-icon {
    margin-bottom: 24px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.deka-feature-icon img {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.deka-feature-icon i {
    font-size: 40px;
    color: #111827; /* Dark grayish-black */
}

/* Title */
.deka-feature-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    line-height: 1.3 !important;
}

/* Description Text */
.deka-feature-text {
    font-size: 15px !important;
    color: #4b5563 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .deka-features-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 480px) {
    .deka-features-wrapper {
        grid-template-columns: repeat(2, 1fr); /* 2 on mobile too as requested */
        gap: 30px 16px;
    }
    
    .deka-feature-icon {
        height: 40px;
        margin-bottom: 16px;
    }
    
    .deka-feature-icon i {
        font-size: 32px;
    }
    
    .deka-feature-title {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }
    
    .deka-feature-text {
        font-size: 13px !important;
    }
}
