.now-section {
    padding: 60px 0;
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgb(89, 3, 145) 0%, rgb(150, 50, 200) 100%);
    border-radius: 2px;
}

.now-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.now-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    border-left: 4px solid rgb(89, 3, 145);
}

.now-item:hover {
    box-shadow: 0 8px 25px rgba(89, 3, 145, 0.15);
    transform: translateY(-5px);
}

.now-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgb(89, 3, 145) 0%, rgb(150, 50, 200) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.now-content h3 {
    margin: 0 0 8px 0;
    color: #333;
    font-size: 18px;
    font-weight: 600;
}

.now-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive design */
@media (max-width: 768px) {
    .now-items {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .now-item {
        flex-direction: column;
        gap: 15px;
    }

    .now-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .now-content h3 {
        font-size: 16px;
    }

    .now-content p {
        font-size: 13px;
    }
}
