.frq-quiz {
    max-width: 1200px;
    margin: 0 auto 60px;
	overflow: hidden;
}
.frq-step {
    text-align: center;
}
.frq-step:first-child {
    display: block;
}
.frq-options-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}
.frq-option {
    border: 1px solid #ccc;
    padding: 0;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    width: 25%;
}
.frq-option img {
    max-width: 100%;
    height: auto;
}
.frq-option-footer {
    margin-top: 16px;
    padding-bottom: 24px;
}
.frq-step-actions {
    margin-top: 32px;
    text-align: center;
}

/* Transitions */
.left-view {
    transform: translateX(-120%);
    height: 0;
    overflow: hidden;
    transition: transform ease-in 0.3s;
}
.in-view {
    transform: translateX(0);
    display: block !important;
    transition: transform ease-in 0.3s;
    height: auto;
}
.right-view {
    transform: translateX(120%);
    transition: transform ease-in 0.3s;
    height: 0;
    overflow: hidden;
}

/* Navigation */
.frq-steps-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.frq-steps-list {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}
.frq-step-nav-item {
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
}
.frq-step-nav-item.active {
    background: #0073aa;
    color: #fff;
}
.frq-step-counter {
    font-weight: bold;
}
.frq-nav-left {
    min-width: 40px;
}
.frq-back {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
}
.frq-back:hover {
    opacity: 0.7;
}
