body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    max-width: 600px;
}

.image-placeholder {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    background-color: transparent;
}

.image-placeholder img {
    max-width: 48%;
    max-height: 100%;
}

.section {
    display: flex;
    flex-direction: column;
}

.link {
    background-color: #fffdd0;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
    text-decoration: none;
    color: black;
}

.link:hover {
    background-color: #f7f0c0;
}

.sub-link {
    background-color: #d0f0c0;
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
    text-decoration: none;
    color: black;
    margin-left: 10px;
}

.sub-link:hover {
    background-color: #c0e8a0;
}

.sub-links {
    display: none;
    flex-direction: column;
    margin-left: 20px;
}

.bottom-links {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.bottom-link {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
    text-decoration: none;
    color: black;
    width: 48%;
    margin-right: 2px;
}

.bottom-link:last-child {
    margin-right: 0;
}

.bottom-link:hover {
    background-color: #e0e0e0;
}

.wide-link {
    display: block;
    background-color: #5282ff;
    color: white;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}
