body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #ffffff;
    text-align: center;
    padding: 20px 0;
    border-bottom: 2px solid #eee;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0;
    color: #333;
}

main {
    padding: 40px 20px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #555;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.tables {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.table, .top-table-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    flex: 1 1 calc(25% - 40px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.table:hover, .top-table-card:hover {
    transform: translateY(-10px);
}

.table h3, .top-table-card h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-top: 0;
    color: #444;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.table p {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #777;
}

.table ul, .top-table-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table ul li, .top-table-card ul li {
    padding: 5px 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #555;
    border-bottom: 1px solid #eee;
}

.table ul li:last-child, .top-table-card ul li:last-child {
    border-bottom: none;
}

.top-table-section {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.top-table-card {
    max-width: 600px;
    width: 100%;
    flex: none;
    margin: 0 20px;
}

@media (max-width: 768px) {
    .table {
        flex: 1 1 calc(50% - 40px);
    }
}

@media (max-width: 480px) {
    .table {
        flex: 1 1 100%;
    }

    .top-table-card {
        margin: 0 10px;
    }
}
