.services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 0 80px;
    background-image: url('images/bg-service.jpg');
    background-size: cover;
}

.services > h1 {
    font-family: ui-sans-serif;
    font-size: 32px;
    color: #ffe5bc;
}

#services table {
    margin: 0 auto;
    border-collapse: collapse;
    background-color: #1f1f21;
    font-size: 18px;
    width: 70%;
}

/* Table header */
#services thead {
    background-color: #161614;
    color: #ffe5bc;
}

#services th {
    padding: 20px;
    border: 2px solid #d5ac6c;
    text-align: center;
}

/* Table body cells */
#services td {
    padding: 20px;
    border: 2px solid #d5ac6c;
    line-height: 1.6;
    text-align: center;
    font-size: 16px;
}

/* Row hover effect */
#services tbody tr:hover {
    background-color: #2a2a2a;
}

/* Footer row */
#services tfoot td {
    text-align: center;
    font-weight: bold;
    background-color: #161614;
    border: 2px solid #d5ac6c;
    padding: 18px;
}
