.hover-box {
    background: #65B5A8;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.hover-box:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.hover-box2 {
    background: #1BA492;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.hover-box2:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.hover-box3 {
    background: #055B5C;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.hover-box3:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

table {
    border-collapse: collapse;
}

table td {
    padding: 12px 15px;
}

/* Left column only, excluding the first row */
table tr:not(:first-child) td:first-child {
    background: #DAE9E7;
}
