section {
    padding: 50px 10%;
    color: white;
}
h1 {
    text-align: center;
    font-size: 2.8rem;
}
.tit {
    color: #ff7043;
    text-shadow: 0px 0px 15px rgba(255, 112, 67, 0.8);
}
.roles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.role-card {
    color: white;
    margin: 5px;
    padding: 15px 20px;
    background: #222;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s, transform 0.3s, box-shadow 0.3s;
}
.role-card:hover {
    transform: scale(1.1);
    background: #7e57c2;
    box-shadow: 0px 0px 20px rgba(255, 112, 67, 0.7);
}
.why-join {
    text-align: center;
    padding: 80px 10%;
    color: white;
}
.why-join .subtitle {
    font-size: 1.2rem;
    color: #bbb;
    max-width: 700px;
    margin: 10px auto 40px;
}
.why-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.why-card {
    width: 250px;
    background: #222;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.why-card:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 30px rgba(255, 112, 67, 0.5);
}
.why-card h2 {
    font-size: 1.4rem;
    color: #7e57c2;
}
.why-card p {
    font-size: 1rem;
    color: #bbb;
    margin-top: 10px;
}
.who-we-need {
    text-align: center;
    padding: 80px 10%;
    color: white;
}
.who-we-need .subtitle {
    font-size: 1.2rem;
    color: #bbb;
    max-width: 700px;
    margin: 10px auto 40px;
}
.qualities-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.quality-card {
    width: 250px;
    background: #222;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.quality-card:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 30px rgba(255, 112, 67, 0.5);
}
.quality-card h2 {
    font-size: 1.4rem;
    color: #7e57c2;
}
.quality-card p {
    font-size: 1rem;
    color: #bbb;
    margin-top: 10px;
}
.join-form-section {
    text-align: center;
    padding: 80px 10%;
    background: #1e1e1e;
    color: white;
    border-radius: 30px;
    box-shadow: 0px 0px 30px rgba(255, 112, 67, 0.5);
}
.join-form {
    max-width: 400px;
    margin: auto;
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
input, select, textarea {
    width: 100%;
    padding: 12px;
    border: none;
    font-size: 1rem;
    border-radius: 8px;
    background: #222;
    color: white;
    transition: box-shadow 0.3s ease-in-out;
}
input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 10px rgba(126, 87, 194, 0.7);
}
.form-group label {
    font-size: 1.1rem;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}
.radio-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}
.radio-options input {
    display: none;
}
.radio-options label {
    background: #222;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-size: 1rem;
    color: white;
    border: 2px solid transparent;
    text-align: center;
}
.radio-options label:hover {
    background: #7e57c2;
}
.radio-options input:checked + label {
    background: #ff7043;
    color: white;
    border: 2px solid #ff7043;
    box-shadow: 0px 0px 10px rgba(255, 112, 67, 0.5);
}
.file-label {
    font-size: 1.1rem;
    font-weight: bold;
    color: #7e57c2;
    display: block;
    margin-bottom: 8px;
}
#resume-upload {
    width: 100%;
    padding: 12px;
    background: #222;
    color: white;
    border: 2px dashed #ff7043;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
}
#resume-upload:hover {
    background: #333;
    border: 2px dashed #7e57c2;
}
#resume-upload:focus {
    outline: none;
    border: 2px solid #ff7043;
    box-shadow: 0px 0px 10px rgba(255, 112, 67, 0.5);
}
.hidden {
    display: none;
}
.join-button {
    padding: 12px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #ff7043, #7e57c2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.join-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(255, 112, 67, 0.5);
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #222;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #7e57c2;
    transition: all 0.3s ease-in-out;
}
.checkbox-group input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #ff7043;
}
.checkbox-group label {
    font-size: 1rem;
    color: white;
    line-height: 1.5;
}
.checkbox-group:hover {
    border-color: #ff7043;
    box-shadow: 0px 0px 10px rgba(255, 112, 67, 0.5);
}
.checkbox-group input:checked + label {
    font-weight: bold;
    color: #ff7043;
}
.success-message {
    display: none;
    color: #7e57c2;
    font-size: 1rem;
    margin-top: 15px;
    padding: 10px;
    background: #222;
    border-radius: 5px;
    border: 2px solid #ff7043;
    transition: opacity 0.3s ease-in-out;
}
.subtitle {
    text-align: center;
}
.how-to-submit {
    text-align: center;
    padding: 80px 10%;
}
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: auto;
}
.step {
    display: flex;
    align-items: center;
    background: #222;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 15px rgba(255, 112, 67, 0.2);
    position: relative;
    overflow: hidden;
    gap: 20px;
}
.step:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 20px rgba(126, 87, 194, 0.5);
}
.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: #7e57c2;
    background: rgba(126, 87, 194, 0.2);
    padding: 15px 15px;
    border-radius: 50%;
}
.step-text {
    flex-grow: 1;
    text-align: left;
}
.step-text h2 {
    font-size: 1.5rem;
    color: #ff7043;
}
.step-text p {
    font-size: 1rem;
    color: #bbb;
    margin-top: 5px;
}
@media (max-width: 768px) {
    .step {
        flex-direction: column;
        text-align: center;
    }
    .step-number {
        margin-bottom: 10px;
    }
}