/* Our Promise Section */
h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

/* List styling */
ul.wow.fadeInUp {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each list item */
ul.wow.fadeInUp li {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 14px;
    line-height: 1.6;
}

/* Icon container */
ul.wow.fadeInUp li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-right: 12px;
    border-radius: 50%;
    background-color: #28a745; /* green */
    flex-shrink: 0;
}

/* Check icon */
ul.wow.fadeInUp li span i {
    color: #fff;
    font-size: 13px;
}

/* Hover effect */
ul.wow.fadeInUp li:hover {
    color: #000;
    transform: translateX(4px);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    h2 {
        font-size: 26px;
    }

    ul.wow.fadeInUp li {
        font-size: 15px;
    }
}
