.new-section-container {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.new-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    justify-content: center;
}

.new-section-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.new-section-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.new-section-card h3 i {
    margin-right: 10px;
    color: #d5d52b;
}

.new-section-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 5px;
}

.new-section-card p,
.new-section-card ul {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0;
}

.new-section-card ul {
    list-style: none;
    padding-left: 0;
}

.new-section-card ul li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 15px;
}

.new-section-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d5d52b !important; /* Ensure color override */
}

.new-section-card.business-setup {
    grid-column: span 1;
}

@media (min-width: 992px) {
    .new-section-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .new-section-card.business-setup {
        grid-column: span 1;
    }
}
