.container {
    padding: 0 40px;
}

@media (min-width: 786px) {
    .mycontainer {
        max-width: 786px;
    }

    .selection-button {
        width: 160px;
    }
}

.mycontainer {
    width: 100%;
}

.progress-bar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 15px;
    position: relative;
}

.progress-bar-container::before {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 5%;
    right: 5%;
    height: 2px;
    background-color: #d1d5db;
    z-index: 0;
}

.step-circle {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid #d1d5db;
    background-color: white;
    transition: all 0.3s;
    color: #6b7280;
    font-size: 14px;
    font-weight: 600;
}

.step-circle.completed {
    border-color: #7d2814;
    background-color: #7d2814;
    color: white;
}

.step-circle.current {
    border-color: #7d2814;
    background-color: white;
}

.fixed-navigation {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
}

.button-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 768px;
}

.button-container button {
    width: 48%;
    padding: 15px;
    font-size: 1rem;
    border-radius: 8px;
    transition: background-color 0.3s, border-color 0.3s;
}

.button-container .previous {
    background-color: white;
    border: 1px solid #d1d5db;
    color: #6b7280;
}

.button-container .previous:hover {
    background-color: #f9fafb;
}

.button-container .next {
    background-color: white;
    border: 2px solid #7d2814;
    color: #7d2814;
}

.button-container .next:hover {
    background-color: #f5e8e4;
}

.button-container .submit {
    background-color: #7d2814;
    color: white;
    border: none;
}

.button-container .submit:hover {
    background-color: #5d1f10;
}

.selection-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 140px;
    height: 130px;
    border: 1px solid #dbd4d1;
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
    transition: all 0.3s;
    cursor: pointer;
}

.selection-button i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.selection-button:hover {
    background-color: #f5e8e448;
}

.selection-button.selected {
    border-width: 2px;
    border-color: #7d2814;
    box-shadow: 0 0 8px #7d27149f;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
}