/* Media Queries */

/* Larger Screens */
@media (min-width: 1200px) {
    .fatwa-item {
        flex: 0 0 30%; /* Three items per row */
    }
}

/* Medium Screens */
@media (max-width: 1024px) {
    .fatwa-item {
        flex: 1 1 45%; /* Two items per row */
    }
}

/* Small Screens */
@media (max-width: 768px) {
    .fatwa-item {
        flex: 1 1 100%; /* One item per row */
    }

    .fatwa-number {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 0.9em;
    }
}

/* Forms on Small Screens */
@media (max-width: 600px) {
    .form-container {
        padding: 20px;
    }

    .submit-btn {
        width: 100%;
    }
}