.yafa-box-wrapper {
    width: 100%;
    max-width: 1100px;
    background-color: #e9eff4;
    background-image: repeating-linear-gradient(
        -45deg,
        rgba(255, 255, 255, 0.4) 0px,
        rgba(255, 255, 255, 0.4) 2px,
        transparent 2px,
        transparent 15px
    );
    border-radius: 40px;
    padding: 60px 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    text-align: center;
    margin: 50px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.yafa-box-title {
    color: #8fb6d9;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: bold;
}

.yafa-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.yafa-feature-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: left;
}

.yafa-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.yafa-check-circle {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #a8c69f, #72a0c1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.yafa-check-circle::after {
    content: '';
    width: 8px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    margin-bottom: 3px;
}

.yafa-feature-card:hover .yafa-check-circle {
    transform: rotate(360deg);
}

.yafa-feature-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .yafa-box-wrapper {
        padding: 40px 20px;
        border-radius: 25px;
    }

    .yafa-box-title {
        font-size: 1.8rem;
    }

    .yafa-features-grid {
        grid-template-columns: 1fr;
    }
}
