.contractor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-height: 425px; /* Adjust based on card height to show ~2 rows */
    overflow-y: auto;  /* Enables vertical scrolling */
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;        /* Softens button corners */
}

.card {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    background: #f9f9f9;
}

.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;
}

.disclaimer, .addition-info {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    background-color: lightgreen;
    border: 1px solid black;
    line-height: 1.6;
    font-size: 1.1em;
}

.disclaimer {
    color: black;
}

.addition-info {
    color: #0c5460;
}
