/* Requirements Section Styling */
.requirements-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.requirements-header {
    border-bottom: 3px solid #007bff;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.requirements-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.requirements-content {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    background: #f8f9fa;
    margin-bottom: 12px;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #007bff;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #495057;
    transition: all 0.2s ease;
    position: relative;
}

.requirements-list li:before {
    display: none;
}

.requirements-list li:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* RTL support for Arabic */
[dir="rtl"] .requirements-list li {
    text-align: right;
    direction: rtl;
    border-left: none;
    border-right: 4px solid #007bff;
}

[dir="rtl"] .requirements-list li:before {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .requirements-section {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .requirements-title {
        font-size: 1.5rem;
    }
    
    .requirements-content {
        margin-bottom: 20px;
        padding: 20px;
    }
}

 