body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header, footer {
    background-color: #c00000; /* Red background */
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
header a, footer a {
    color: #fff;
    margin: 10px;
    text-decoration: none;
    padding: 10px 16px;
    display: inline-block;
    font-size: 16px;
}
nav a {
    margin: 0 12px;
}
main {
    padding: 30px 20px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
th, td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: center;
}
section.faq {
    margin-top: 30px;
}
section.faq h2 {
    margin-bottom: 15px;
}
section.faq details {
    margin-bottom: 10px;
}
.logo-img {
    height: 50px;
}
img.content-img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}
@media screen and (min-width: 600px) {
    header, footer {
        flex-direction: row;
        justify-content: space-between;
    }
}

.vertical-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}
.vertical-table .row {
    background: #f9f9f9;
    border: 1px solid #ccc;
    padding: 12px 15px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.vertical-table .row strong {
    min-width: 40%;
}
