.main .strip
{
    background-color: #198754;
    font-size: 1rem;
    text-align: center;
    padding: 0.75rem 1rem;
}

.main .strip .strip-text
{
    animation: titilar 1s infinite ease-in-out;
    transition: color 0.3s ease;
}

@keyframes titilar {
    0%,
    100% {
        opacity: 1;
        color: #ffffff;
      }
      
      50% {
        opacity: 0.7;
        color: #22c55e;
      }
    }

.main .benefit-box {
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    height: 100%;
    transition: all 0.3s ease;
}

.main .benefit-box h6 {
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.main .benefit-box:hover {
    background-color: rgba(34, 197, 94, 0.05);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.2);
    transform: scale(1.02);
}

.main .benefit-box:hover h6 {
    color: #22c55e !important;
}

@media (max-width: 576px) {
    .main .strip h5
    {
        font-size: 0.85rem;
    }
}