/* Section container */
#join {
    background-color: #f8f9fa;
    /* light background, matches your bg-light */
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Section title */
#join .section-title {
    font-weight: 700;
    font-size: 2.75rem;
    color: #1B2330;
    /* your brand orange */
    margin-bottom: 1rem;
}

/* Section subtitle */
#join p.text-muted {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Form container */
#join form {
    background-color: #fff;
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 6px 18px rgba(241, 101, 1, 0.15);
    transition: box-shadow 0.3s ease;
}

#join form:hover {
    box-shadow: 0 12px 30px rgba(241, 101, 1, 0.25);
}

/* Form labels */
#join label.form-label {
    font-weight: 600;
    color: #333;
}

/* Inputs and textarea */
#join input.form-control,
#join select.form-select,
#join textarea.form-control {
    border-radius: 0.6rem;
    border: 1.5px solid #ddd;
    transition: border-color 0.3s ease;
    font-size: 1rem;
}

#join input.form-control:focus,
#join select.form-select:focus,
#join textarea.form-control:focus {
    border-color: #f16501;
    box-shadow: 0 0 8px rgba(241, 101, 1, 0.3);
    outline: none;
}

/* Submit button */
#join button.btn-primary {
    background-color: #1B2330;
    border-color: #f16501;
    font-weight: 700;
    padding: 0.85rem 2rem;
    font-size: 1.25rem;
    border-radius: 50px;
    box-shadow: 0 6px 15px rgba(241, 101, 1, 0.35);
    transition: background-color 0.3s ease;
}

#join button.btn-primary:hover {
    background-color: #d95300;
    border-color: #1B2330;
    box-shadow: 0 8px 25px rgba(217, 83, 0, 0.5);
}

/* Why Join Us box */
#join .bg-white.rounded-4.shadow-sm.p-4 {
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

#join h4.fw-bold {
    color: #1B2330;
    margin-bottom: 1.5rem;
}

#join ul.list-unstyled li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #555;
}

#join ul.list-unstyled li strong {
    color: #333;
}