/* Help Page Specific Styles */

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.help-card {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

.help-card h2 {
    color: #2e7d32; /* Deep green for headings */
    margin-top: 0;
    font-size: 1.2rem;
    border-bottom: 2px solid lightgreen;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.help-list {
    padding-left: 20px;
    margin-top: 10px;
}

.help-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.help-card a {
    color: #0066cc;
    font-weight: bold;
    text-decoration: underline;
}

/* Ensure the grid stacks vertically on small mobile screens */
@media screen and (max-width: 600px) {
    .help-grid {
        grid-template-columns: 1fr;
    }
}