.form-container {
    max-width: 900px;
    margin: auto;
    padding: 40px;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.header-section {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 25px;
    color: #2f497e;
}

.section-header {
    background: #2f497e;
    color: #fff;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    border-radius: 5px;
    margin-bottom: 25px;
}

label {
    font-weight: bold;
    font-size: 18px;
    color: #2f497e;
}

.input-custom {
    background: #fff;
    border: 1px solid #d1d1d1;
    border-radius: 6px;
    padding: 14px;
    width: 100%;
}

.custom-radio-group {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 5px;
}

.custom-radio-group label {
    padding: 8px 12px;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
    background-color: #f9f9f9;
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    color: #2f497e;
}

.custom-radio-group input {
    display: none;
}

.custom-radio-group input:checked + label {
    background-color: #2f497e;
    color: white;
    font-weight: bold;
    border-color: #2f497e;
}

.btn-submit {
    background-color: #2f497e;
    color: white;
    font-size: 18px;
    padding: 14px 35px;
    border: none;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}

.btn-submit:hover {
    background-color: #1e3554;
    color: white !important;
}
