
    /* Custom styles for Recruitment page */
    .recruitment-hero {
        position: relative;
        height: 500px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--dark-bg) 100%);
        color: white;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    @media (max-width: 768px) {
        .recruitment-hero {
            height: 400px;
            text-align: center;
        }
    }

    .recruitment-hero-content {
        position: relative;
        z-index: 2;
        max-width: 800px;
    }

    .recruitment-hero h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    @media (max-width: 768px) {
        .recruitment-hero h1 {
            font-size: 2.5rem;
        }
    }

    /* Experience Section */
    .experience-section {
        padding: 5rem 0;
        background: white;
    }

    .experience-intro {
        text-align: center;
        max-width: 900px;
        margin: 0 auto 4rem;
    }

    .experience-intro p {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #555;
    }

    /* Benefits */
    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin: 4rem 0;
    }

    .benefit-card {
        background: var(--light-bg);
        padding: 2.5rem;
        border-radius: 15px;
        text-align: center;
        transition: all 0.3s ease;
        border-left: 5px solid var(--primary);
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        background: white;
    }

    .benefit-icon {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
    }

    /* Application Options */
    .application-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 3rem;
        margin: 4rem 0;
    }

    .application-option {
        background: white;
        padding: 3rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        text-align: center;
        transition: all 0.3s ease;
    }

    .application-option:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }

    .option-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
        margin: 0 auto 1.5rem;
    }

    .application-option:nth-child(2) .option-icon {
        background: linear-gradient(135deg, var(--secondary) 0%, #ffd166 100%);
    }

    /* Form Styles */
    .application-form {
        background: white;
        padding: 3rem;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        margin: 4rem 0;
    }

    .form-group {
        margin-bottom: 2rem;
    }

    .form-label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--primary);
    }

    .form-control {
        width: 100%;
        padding: 1rem;
        border: 2px solid #e1e5e9;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s;
    }

    .form-control:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(116, 209, 234, 0.2);
    }

    .form-control-file {
        padding: 0.5rem;
        border: 2px dashed #e1e5e9;
        border-radius: 8px;
        width: 100%;
        cursor: pointer;
    }

    .form-control-file:hover {
        border-color: var(--accent);
    }

    .file-info {
        font-size: 0.875rem;
        color: #666;
        margin-top: 0.5rem;
    }

    .required::after {
        content: ' *';
        color: #dc3545;
    }

    /* Error Messages */
    .error-message {
        color: #dc3545;
        font-size: 0.875rem;
        margin-top: 0.25rem;
    }

    /* Success/Error Alerts */
    .alert {
        padding: 1.25rem;
        border-radius: 8px;
        margin-bottom: 2rem;
        border: 1px solid transparent;
    }

    .alert-success {
        color: #0f5132;
        background-color: #d1e7dd;
        border-color: #badbcc;
    }

    .alert-error {
        color: #842029;
        background-color: #f8d7da;
        border-color: #f5c2c7;
    }

    /* Job Types */
    .job-types-section {
        padding: 4rem 0;
        background: var(--light-bg);
    }

    .job-types-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .job-type-tag {
        background: white;
        padding: 1rem 1.5rem;
        border-radius: 8px;
        text-align: center;
        font-weight: 500;
        color: var(--primary);
        border: 2px solid transparent;
        transition: all 0.3s;
        cursor: pointer;
    }

    .job-type-tag:hover {
        border-color: var(--primary);
        transform: translateY(-3px);
    }

    .job-type-tag.selected {
        background: var(--primary);
        color: white;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .recruitment-hero h1 {
            font-size: 2.5rem;
        }
        
        .application-option {
            padding: 2rem;
        }
        
        .application-form {
            padding: 2rem;
        }
        
        .benefit-card {
            padding: 2rem;
        }
    }

    @media (max-width: 480px) {
        .application-options {
            grid-template-columns: 1fr;
        }
        
        .job-types-grid {
            grid-template-columns: 1fr;
        }
    }
