.career-section {
    max-width: 1100px;
    margin: 50px auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.career-section h1 {
    font-size: 2rem;
    color: #004085;
    margin-bottom: 20px;
    text-align: center;
}
.career-section p {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333;
}
.vacancies-list {
    margin-top: 20px;
}
.vacancies-list h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #004085;
}
.vacancies-list ul {
    list-style-type: none;
    padding: 0;
}
.vacancies-list ul li {
    font-size: 1rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #333;
}
.vacancies-list ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #004085;
}
.upload-section {
    margin-top: 30px;
}
.upload-section h3 {
    margin-bottom: 20px;
    font-weight: bold;
}
.form_controledit {
    /* text-align: center; */
    display: block;
    width: 50%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #787878;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 8px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
#cvForm {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaeaea;
}

#cvForm h2 {
    font-size: 24px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

#cvForm .form-group {
    margin-bottom: 20px;
}

#cvForm label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
    font-size: 14px;
}

#cvForm input, 
#cvForm textarea, 
#cvForm button {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background-color: #f9fafb;
    transition: all 0.3s ease;
}

#cvForm input:focus, 
#cvForm textarea:focus {
    border-color: #0056b3;
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.2);
}

#cvForm textarea {
    resize: vertical;
}

#cvForm button {
    background-color: #0056b3;
    color: #ffffff;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

#cvForm button:hover {
    background-color: #003d80;
}

#cvForm .mb-3 {
    margin-bottom: 25px;
}

#cvForm input[type="file"] {
    padding: 5px;
}