.service-highlight {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    background: #A6B3C0;
    color: #222;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight-badge i {
    margin-right: 8px;
    font-size: 16px;
}

.service-highlight h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.service-highlight p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    margin-top: 30px;
    margin-bottom: 30px;
}

.service-features h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.feature-point {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature-point i {
    color: var(--primary-color, #0056b3);
    margin-right: 10px;
    font-size: 18px;
}

.feature-point span {
    font-size: 15px;
    color: #444;
}

.contact-cta {
    margin-top: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background: #A6B3C0;
    color: #222;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: var(--secondary-color, #4053fd);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}

.cta-btn i {
    margin-right: 10px;
    font-size: 18px;
}
.cta-btn:hover i{
    color: white;
}

/* Responsive styles */
@media (max-width: 768px) {
    .service-highlight {
        padding: 20px;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}