.career-page {
    padding: 80px 20px 100px;
    background: #f8f9fa;
    min-height: 100vh;
}

.career-container {
    max-width: 900px;
    margin: 0 auto;
}

.career-hero {
    text-align: center;
    margin-bottom: 50px;
}

.career-hero h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.career-hero p {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.career-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    padding: 50px;
}

/* Form Header */
.form-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 15px;
    color: #666;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
}

.form-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e8e8e8;
}

/* Form Groups */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    color: #333;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F4B41A;
    box-shadow: 0 0 0 3px rgba(244, 180, 26, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    background-color: #fff;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Form Actions */
.form-actions {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

/* Buttons */
.btn-primary {
    width: 100%;
    background: #F4B41A;
    color: #1a1a1a;
    border: none;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #e5a615;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 180, 26, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Success Box */
.success-box {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    color: #10b981;
    margin-bottom: 24px;
}

.success-box h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.success-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 32px;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #e9ecef;
    border-color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .career-page {
        padding: 60px 16px 80px;
    }

    .career-card {
        padding: 30px 24px;
    }

    .career-hero h2 {
        font-size: 32px;
    }

    .career-hero p {
        font-size: 16px;
    }

    .form-header h3 {
        font-size: 20px;
    }

    .form-section h4 {
        font-size: 16px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .success-icon {
        width: 64px;
        height: 64px;
    }

    .success-box h3 {
        font-size: 24px;
    }

    .success-box p {
        font-size: 15px;
    }
}