* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #2C2C2C;
    min-width: 1200px;
    font-family: Inter;
}


/* header */

.header {
    height: 105px;
    background: white;
    border-bottom: 1px solid #eee;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.wrap {
    display: flex;
    height: 105px;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
}

.logo img {
    width: 200px;
    height: 67px;
    cursor: pointer;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #585858;
    font-size: 20px;
    font-weight: 700;
}

nav a:hover {
    color: #A635F1;
    transition: all 0.2s;
}

nav .active {
    color: #A635F1;
}

.hero {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.question-container {
    width: 1200px;
    height: 5096px;
    border: 1px solid #A635F1;
    background: #FFF;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    position: relative;
}

.progress-bar {
    width: calc(100% + 2px);
    margin-left: -1px;
    margin-top: -1px;
    height: 91px;
    background: #A635F1;
    color: #FFF;
    text-align: center;
    line-height: 90px;
    font-size: 24px;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 10;
    margin-bottom: 44px;
    opacity: 0.8;
}

#questions {
    max-width: 600px;
    margin: 0 auto;
}

.question-block {
    margin-bottom: 83px;
    text-align: center;
}

.question-block h3 {
    margin-bottom: 33px;
    color: #2C2C2C;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.456px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.option {
    width: 310px;
    height: 53px;
    display: block;
    text-align: center;
    line-height: 53px;
    border-radius: 10px;
    background: #ECECEC;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
    color: #686868;
    font-weight: 700;
    letter-spacing: -0.304px;
    position: relative;
    margin: 0 auto;
}

.option input {
    display: none;
}

.option:hover {
    background: #A635F1;
    color: #FFF;
    transition: all 0.2s;
}

.option:has(input:checked) {
    background: #A635F1;
    color: #FFF;
}

.result-btn {
    display: block;
    width: 100%;
    height: 90px;
    background: #A635F1;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.456px;
    border: none;
    border-radius: 0 0 30px 30px;
    cursor: pointer;
}

.result-btn:hover {
    opacity: 0.9;
}

.footer {
    height: 172px;
    margin-top: 40px;
    padding-top: 24px;
    padding-bottom: 25px;
    background: #F9F6F8;
    color: #8FA1B2;
    font-size: 15px;
    font-weight: 400;
}

.company {
    color: #171717;
    font-size: 18px;
    margin-bottom: 10px;
}