body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #e6e6e6;
}

/* Left Column */
.left-column {
    width: 70%;
    padding: 20px;
    border-right: 1px solid #e6e6e6;
}

.left-column h1 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.category-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 18px;
    color: black;
    border: 1px solid #000;
    margin-bottom: 30px;
    background-color: #e0e0e0;
    cursor: pointer;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.options button {
    display: block;
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    background-color: #f4f4f4;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 16px;
    text-align: left;
}

.options button.selected {
    background-color: #ffcc00;
    border-color: #e6b800;
}

.next-btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #ffcc00;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

/* Right Column */
.right-column {
    width: 30%;
    padding: 20px;
}

.right-column h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-button {
    display: block;
    background-color: #ffcc00;
    padding: 12px 20px;
    margin-bottom: 20px;
    text-align: center;
    color: black;
    border: 1px solid #000;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.right-column ul {
    list-style-type: none;
    padding: 0;
}

.right-column ul li {
    margin-bottom: 10px;
}

.right-column ul li a {
    font-size: 18px;
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.right-column ul li a:hover {
    text-decoration: underline;
}
