* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    background-color: #eef4f8;
}

nav.menu,
nav {
    padding: 16px;
    background-color: #125ea1;
    text-align: center;
}

nav img,
.menu img {
    width: min(220px, 78vw);
    height: auto;
}

.container {
    width: min(100% - 24px, 880px);
    background-color: #125ea1,
    padding: clamp(20px, 5vw, 44px);
    margin: 24px auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.container1 {
    width: min(100% - 24px, 880px);
    background-color: white;
    padding: clamp(20px, 5vw, 44px);
    margin: 24px auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.step h5,
.container h1 {
    line-height: 1.25;
}

label {
    margin-bottom: 6px;
    font-weight: 500;
}

.form-control,
.form-select {
    min-height: 44px;
}

textarea.form-control {
    min-height: 110px;
}

.btn {
    min-height: 42px;
    white-space: normal;
}

.step .btn + .btn {
    margin-left: 8px;
}

.form-check {
    width: min(100%, 440px) !important;
    text-align: left !important;
}

.card {
    height: 100%;
}

.card-img-top {
    width: 100%;
    height: 160px;
    object-fit: contain;
    padding: 16px;
    background-color: #f8fafc;
}

.card-title {
    overflow-wrap: anywhere;
}

.card-title a {
    text-decoration: none;
}

@media (max-width: 575.98px) {
    .container {
        width: calc(100% - 16px);
        margin: 16px auto;
        padding: 18px;
        border-radius: 6px;
    }

    .container h1 {
        font-size: 1.55rem;
    }

    .step .btn {
        width: 100%;
        margin: 6px 0 0;
    }

    .step .btn + .btn {
        margin-left: 0;
    }
}
