body {
    /* font-family: 'Montserrat', sans-serif; */
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header .banner {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #153a62;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

p {
    font-family: "inter", sans-serif;
    font-size: 30px;
    font-weight: 500;
    color: #153a62;
    text-align: justify;
    margin-bottom: 30px;
}

ul {
    font-size: 27px;
    font-weight: 500;
    color: #153a62;
    text-align: justify;
    margin-bottom: 30px;
}

.required {
    color: #ef6024;
}

.cta-button, button {
    background-color: #ef6024;
    color: #fff;
    padding: 10px 20px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
    align-items: center;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #153a62;
    box-shadow: 0 0 0 5px #476687;
    color: #fff;
}

.form-group {
    margin-bottom: 30px;
}

.form-group-inline{
    margin-bottom: 30px;
}

.form-group label, .form-group-inline label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #153a62;
}

.form-group input, .form-group-inline input, .form-group select {
    width: 97.5%;
    padding: 10px;
    border: 1px solid #ef6024;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group-inline {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ef6024;
    border-radius: 5px;
    font-size: 1rem;
}
.form-group-inline select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ef6024;
    border-radius: 5px;
    font-size: 1rem;
}
.form-group-inline input {
    width: 100%; 
    padding: 8px;
    box-sizing: border-box; 
}
.form-group-inline div {
    flex: 1; 
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
}

.progress-bar .step {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    color: #ccc;
    border-bottom: 2px solid #ccc;
    position: relative;
}

.progress-bar .step.active {
    color: #153a62;
    border-bottom: 2px solid #ef6024;
    font-weight: 700;
}


input[type="checkbox"] {
    transform: scale(1.2); /* Optional: Larger checkbox */
    cursor: pointer;
    text-align: left;
}

.check-group {
    font-size: 15px;
    font-weight: 600;
    color: #153a62;
    text-align: left;
    margin-bottom: 35px;
}

.language-selector {
    text-align: right;
    margin-bottom: 10px;
    font-family: "inter" sans-serif;
    color: #153a62;
    font-weight: 800;
    font-size:  20px;;
    
}

.language-selector select {
    width: 15%;
    padding: 10px;
    border: 1px solid #ef6024;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.language-selector option {
    color: #153a62;
    font-size: 10px;
    font-weight: 700;
    font-family: "inter" sans-serif;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .form-group-inline {
        flex-direction: column;
    }

    .form-group-inline div {
        width: 100%;
    }
}